comparison src/http/modules/ngx_http_access_module.c @ 2912:c7d57b539248

return NULL instead of NGX_CONF_ERROR on a create conf failure
author Igor Sysoev <igor@sysoev.ru>
date Tue, 02 Jun 2009 16:09:44 +0000
parents a472d954c534
children ab9f5a715805
comparison
equal deleted inserted replaced
2911:32b444fa2ca4 2912:c7d57b539248
199 { 199 {
200 ngx_http_access_loc_conf_t *conf; 200 ngx_http_access_loc_conf_t *conf;
201 201
202 conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_access_loc_conf_t)); 202 conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_access_loc_conf_t));
203 if (conf == NULL) { 203 if (conf == NULL) {
204 return NGX_CONF_ERROR; 204 return NULL;
205 } 205 }
206 206
207 return conf; 207 return conf;
208 } 208 }
209 209