From: Sascha Schumann Date: Sun, 24 Dec 2000 16:30:42 +0000 (+0000) Subject: More instances of s/efree/FREE_ZVAL/ X-Git-Tag: php-4.0.5RC1~793 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ca8721e9961f6f84de1daee9ea6d37e288fa3ce;p=php More instances of s/efree/FREE_ZVAL/ --- diff --git a/ext/session/mod_user.c b/ext/session/mod_user.c index 791062a27c..caa5773abd 100644 --- a/ext/session/mod_user.c +++ b/ext/session/mod_user.c @@ -85,7 +85,7 @@ static zval *ps_call_handler(zval *func, int argc, zval **argv) convert_to_long(retval); \ ret = retval->value.lval; \ zval_dtor(retval); \ - efree(retval); \ + FREE_ZVAL(retval); \ } \ return ret @@ -134,7 +134,7 @@ PS_READ_FUNC(user) ret = SUCCESS; } zval_dtor(retval); - efree(retval); + FREE_ZVAL(retval); } return ret; diff --git a/ext/session/session.c b/ext/session/session.c index 1f352ab834..5af87a142f 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -478,7 +478,7 @@ PS_SERIALIZER_DECODE_FUNC(wddx) } zval_dtor(retval); - efree(retval); + FREE_ZVAL(retval); return ret; }