summaryrefslogtreecommitdiff
path: root/ext/pcre/php_pcre.c
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2000-08-17 19:01:28 +0000
committerAndrei Zmievski <andrei@php.net>2000-08-17 19:01:28 +0000
commit4f96d15f331e792a2d745479805470b01da74036 (patch)
tree3e238522e5608049bb0f4d78a3f2d33fe057248e /ext/pcre/php_pcre.c
parentba0e3f2145cf618c1d0952d5d7a019f77506aa71 (diff)
downloadphp-git-4f96d15f331e792a2d745479805470b01da74036.tar.gz
Reverting the pemalloc -> malloc change until we figure out why it breaks.
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r--ext/pcre/php_pcre.c4
1 files changed, 2 insertions, 2 deletions
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);
}