changeset 2473:afba93b8bf06 stable-0.6

r2414 merge: fix segfault
author Igor Sysoev <igor@sysoev.ru>
date Mon, 26 Jan 2009 15:17:50 +0000
parents d7d3a72c07d8
children 6175f886ddfb
files src/http/ngx_http_upstream.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/ngx_http_upstream.c
+++ b/src/http/ngx_http_upstream.c
@@ -2345,7 +2345,9 @@ ngx_http_upstream_finalize_request(ngx_h
     ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
                    "finalize http upstream request: %i", rc);
 
-    *u->cleanup = NULL;
+    if (u->cleanup) {
+        *u->cleanup = NULL;
+    }
 
     if (u->state && u->state->response_sec) {
         tp = ngx_timeofday();