comparison src/http/modules/ngx_http_empty_gif_module.c @ 642:d3cf6c6b0043 NGINX_1_1_5

nginx 1.1.5 *) Feature: the "uwsgi_buffering" and "scgi_buffering" directives. Thanks to Peter Smit. *) Bugfix: non-cacheable responses might be cached if "proxy_cache_bypass" directive was used. Thanks to John Ferlito. *) Bugfix: in HTTP/1.1 support in the ngx_http_proxy_module. *) Bugfix: cached responses with an empty body were returned incorrectly; the bug had appeared in 0.8.31. *) Bugfix: 201 responses of the ngx_http_dav_module were incorrect; the bug had appeared in 0.8.32. *) Bugfix: in the "return" directive. *) Bugfix: the "ssl_session_cache builtin" directive caused segmentation fault; the bug had appeared in 1.1.1.
author Igor Sysoev <http://sysoev.ru>
date Wed, 05 Oct 2011 00:00:00 +0400
parents 4d3e880ce86c
children d0f7a625f27c
comparison
equal deleted inserted replaced
641:6c19b251b926 642:d3cf6c6b0043
109 109
110 110
111 static ngx_int_t 111 static ngx_int_t
112 ngx_http_empty_gif_handler(ngx_http_request_t *r) 112 ngx_http_empty_gif_handler(ngx_http_request_t *r)
113 { 113 {
114 ngx_int_t rc;
115 ngx_http_complex_value_t cv; 114 ngx_http_complex_value_t cv;
116 115
117 if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) { 116 if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) {
118 return NGX_HTTP_NOT_ALLOWED; 117 return NGX_HTTP_NOT_ALLOWED;
119 }
120
121 rc = ngx_http_discard_request_body(r);
122
123 if (rc != NGX_OK) {
124 return rc;
125 } 118 }
126 119
127 ngx_memzero(&cv, sizeof(ngx_http_complex_value_t)); 120 ngx_memzero(&cv, sizeof(ngx_http_complex_value_t));
128 121
129 cv.value.len = sizeof(ngx_empty_gif); 122 cv.value.len = sizeof(ngx_empty_gif);