comparison src/http/modules/ngx_http_headers_filter_module.c @ 430:dac47e9ef0d5 NGINX_0_7_27

nginx 0.7.27 *) Feature: the "try_files" directive. *) Feature: variables support in the "fastcgi_pass" directive. *) Feature: now the $geo variable may get an address from a variable. Thanks to Andrei Nigmatulin. *) Feature: now a location's modifier may be used without space before name. *) Feature: the $upstream_response_length variable. *) Bugfix: now a "add_header" directive does not add an empty value. *) Bugfix: if zero length static file was requested, then nginx just closed connection; the bug had appeared in 0.7.25. *) Bugfix: a MOVE method could not move file in non-existent directory. *) Bugfix: a segmentation fault occurred in worker process, if no one named location was defined in server, but some one was used in an error_page directive. Thanks to Sergey Bochenkov.
author Igor Sysoev <http://sysoev.ru>
date Mon, 15 Dec 2008 00:00:00 +0300
parents 05981f639d21
children c8cfb6c462ef
comparison
equal deleted inserted replaced
429:3b8e9d1bc9bb 430:dac47e9ef0d5
323 ngx_http_add_header(ngx_http_request_t *r, ngx_http_header_val_t *hv, 323 ngx_http_add_header(ngx_http_request_t *r, ngx_http_header_val_t *hv,
324 ngx_str_t *value) 324 ngx_str_t *value)
325 { 325 {
326 ngx_table_elt_t *h; 326 ngx_table_elt_t *h;
327 327
328 h = ngx_list_push(&r->headers_out.headers); 328 if (value->len) {
329 if (h == NULL) { 329 h = ngx_list_push(&r->headers_out.headers);
330 return NGX_ERROR; 330 if (h == NULL) {
331 } 331 return NGX_ERROR;
332 332 }
333 h->hash = hv->value.hash; 333
334 h->key = hv->value.key; 334 h->hash = hv->value.hash;
335 h->value = *value; 335 h->key = hv->value.key;
336 h->value = *value;
337 }
336 338
337 return NGX_OK; 339 return NGX_OK;
338 } 340 }
339 341
340 342