diff options
author | Andrei Zmievski <andrei@php.net> | 2000-08-17 16:09:00 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2000-08-17 16:09:00 +0000 |
commit | ba0e3f2145cf618c1d0952d5d7a019f77506aa71 (patch) | |
tree | 545773ba150559c0e8516a45804abd52719bd4db /ext/pcre/php_pcre.c | |
parent | b436f97a5344931abb89e383b8b9a8f464a6d8a5 (diff) | |
download | php-git-ba0e3f2145cf618c1d0952d5d7a019f77506aa71.tar.gz |
No need to have persistent allocation.
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |