From 2b0c76cfbdfd660242f47ce66a4d54d30f9b23e8 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 27 Oct 2003 21:01:00 +0000 Subject: nginx-0.0.1-2003-10-28-00:01:00 import --- src/core/ngx_alloc.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/ngx_alloc.h') diff --git a/src/core/ngx_alloc.h b/src/core/ngx_alloc.h index 946361182..26a8cdcdb 100644 --- a/src/core/ngx_alloc.h +++ b/src/core/ngx_alloc.h @@ -17,6 +17,8 @@ #define ngx_test_null(p, alloc, rc) if ((p = alloc) == NULL) { return rc; } +#define ngx_is_null(p, alloc) if ((p = alloc) == NULL) + typedef struct ngx_pool_large_s ngx_pool_large_t; -- cgit