From: Andrei Zmievski Date: Thu, 17 Aug 2000 19:01:28 +0000 (+0000) Subject: Reverting the pemalloc -> malloc change until we figure out why it breaks. X-Git-Tag: php-4.0.2RC1~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f96d15f331e792a2d745479805470b01da74036;p=php Reverting the pemalloc -> malloc change until we figure out why it breaks. --- diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index aedd8b09e7..4641067904 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -52,13 +52,13 @@ php_pcre_globals pcre_globals; static void *php_pcre_malloc(size_t size) { - return emalloc(size); + return pemalloc(size, 1); } static void php_pcre_free(void *ptr) { - efree(ptr); + pefree(ptr, 1); }