Simplified ngx_list_create().

pull/810/head
Ruslan Ermilov 13 years ago
parent c974bd7936
commit 02cc52554f
  1. 10
      src/core/ngx_list.c

@ -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;
}

Loading…
Cancel
Save