]> granicus.if.org Git - php/commitdiff
Reverting the pemalloc -> malloc change until we figure out why it breaks.
authorAndrei Zmievski <andrei@php.net>
Thu, 17 Aug 2000 19:01:28 +0000 (19:01 +0000)
committerAndrei Zmievski <andrei@php.net>
Thu, 17 Aug 2000 19:01:28 +0000 (19:01 +0000)
ext/pcre/php_pcre.c

index aedd8b09e7169d3d781ba224df64c0e4ea2d3949..4641067904e8c23d60085bdd6e4c5965c60bddc1 100644 (file)
@@ -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);
 }