Simplified ngx_list_create().

This commit is contained in:
Ruslan Ermilov 2013-06-19 08:55:08 +04:00
parent 724470bf78
commit 2de090e987
1 changed files with 1 additions and 9 deletions

View File

@ -19,18 +19,10 @@ ngx_list_create(ngx_pool_t *pool, ngx_uint_t n, size_t size)
return NULL;
}
list->part.elts = ngx_palloc(pool, n * size);
if (list->part.elts == NULL) {
if (ngx_list_init(list, pool, n, size) != NGX_OK) {
return NULL;
}
list->part.nelts = 0;
list->part.next = NULL;
list->last = &list->part;
list->size = size;
list->nalloc = n;
list->pool = pool;
return list;
}