From: Andrei Zmievski Date: Thu, 17 Aug 2000 16:09:00 +0000 (+0000) Subject: No need to have persistent allocation. X-Git-Tag: php-4.0.2RC1~79 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba0e3f2145cf618c1d0952d5d7a019f77506aa71;p=php No need to have persistent allocation. --- diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 4641067904..aedd8b09e7 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 pemalloc(size, 1); + return emalloc(size); } static void php_pcre_free(void *ptr) { - pefree(ptr, 1); + efree(ptr); }