changeset 3514:58865853f29b

fix segfault: ngx_http_upstream_cleanup() cleans r->cleanup, the bug had been introduced in r3419
author Igor Sysoev <igor@sysoev.ru>
date Fri, 14 May 2010 09:22:58 +0000
parents e60e00b4fe0c
children 76d252724db5
files src/http/ngx_http_upstream.c
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/ngx_http_upstream.c
+++ b/src/http/ngx_http_upstream.c
@@ -365,8 +365,6 @@ ngx_http_upstream_create(ngx_http_reques
     if (u && u->cleanup) {
         r->main->count++;
         ngx_http_upstream_cleanup(r);
-        *u->cleanup = NULL;
-        u->cleanup = NULL;
     }
 
     u = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_t));