fix pcre allocation on Win32, the bug had been introduced in r3326

This commit is contained in:
Igor Sysoev 2009-11-17 10:24:45 +00:00
parent 25622c2f92
commit 69061b73ef

View File

@ -35,11 +35,9 @@ ngx_regex_malloc_init(ngx_pool_t *pool)
return;
}
#else
#endif
ngx_pcre_pool = pool;
#endif
}
@ -55,11 +53,9 @@ ngx_regex_malloc_done(void)
return;
}
#else
#endif
ngx_pcre_pool = NULL;
#endif
}