comparison src/http/modules/ngx_http_autoindex_module.c @ 3237:2efa8d2fcde1 stable-0.7

merge r2903, r2911, r2912, r3002: fix various failures handling
author Igor Sysoev <igor@sysoev.ru>
date Mon, 26 Oct 2009 15:54:29 +0000
parents 042124063e3d
children dd1570b6f237 8152369f7037
comparison
equal deleted inserted replaced
3236:9aa8fd2d5a00 3237:2efa8d2fcde1
630 { 630 {
631 ngx_http_autoindex_loc_conf_t *conf; 631 ngx_http_autoindex_loc_conf_t *conf;
632 632
633 conf = ngx_palloc(cf->pool, sizeof(ngx_http_autoindex_loc_conf_t)); 633 conf = ngx_palloc(cf->pool, sizeof(ngx_http_autoindex_loc_conf_t));
634 if (conf == NULL) { 634 if (conf == NULL) {
635 return NGX_CONF_ERROR; 635 return NULL;
636 } 636 }
637 637
638 conf->enable = NGX_CONF_UNSET; 638 conf->enable = NGX_CONF_UNSET;
639 conf->localtime = NGX_CONF_UNSET; 639 conf->localtime = NGX_CONF_UNSET;
640 conf->exact_size = NGX_CONF_UNSET; 640 conf->exact_size = NGX_CONF_UNSET;