Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-10-28 13:45:40 +0300
committerIgor Sysoev <igor@sysoev.ru>2009-10-28 13:45:40 +0300
commitcadac4ec3e0f15974b1f4a0e2a7b5aebe8d76b73 (patch)
treec3b12654a6c6adc3f6ff31ef19e2bc33c8c56d69 /src/http/ngx_http.c
parentb3586d13da9db8ead5cb6c0cb4b40b42bde53e1c (diff)
fix segfault if http {} block is empty, the bug had been introduced in r3218
Diffstat (limited to 'src/http/ngx_http.c')
-rw-r--r--src/http/ngx_http.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c
index 99ccef934..534fabf1b 100644
--- a/src/http/ngx_http.c
+++ b/src/http/ngx_http.c
@@ -1352,6 +1352,10 @@ ngx_http_optimize_servers(ngx_conf_t *cf, ngx_http_core_main_conf_t *cmcf,
ngx_http_conf_port_t *port;
ngx_http_conf_addr_t *addr;
+ if (ports == NULL) {
+ return NGX_OK;
+ }
+
port = ports->elts;
for (p = 0; p < ports->nelts; p++) {