comparison src/http/ngx_http_request_body.c @ 316:24def6198d7f NGINX_0_5_28

nginx 0.5.28 *) Security: the "msie_refresh" directive allowed XSS. Thanks to Maxim Boguk. *) Bugfix: a segmentation fault might occur in worker process if the "auth_http_header" directive was used. Thanks to Maxim Dounin. *) Bugfix: a segmentation fault occurred in worker process if the CRAM-MD5 authentication method was used, but it was not enabled. *) Bugfix: a segmentation fault might occur in worker process if the eventport method was used.
author Igor Sysoev <http://sysoev.ru>
date Tue, 17 Jul 2007 00:00:00 +0400
parents 5bef04fc3fd5
children
comparison
equal deleted inserted replaced
315:32a7c84208fa 316:24def6198d7f
86 return NGX_HTTP_INTERNAL_SERVER_ERROR; 86 return NGX_HTTP_INTERNAL_SERVER_ERROR;
87 } 87 }
88 } 88 }
89 89
90 post_handler(r); 90 post_handler(r);
91
91 return NGX_OK; 92 return NGX_OK;
92 } 93 }
93 94
94 rb->post_handler = post_handler; 95 rb->post_handler = post_handler;
95 96