More instances of s/efree/FREE_ZVAL/

This commit is contained in:
Sascha Schumann 2000-12-24 16:30:42 +00:00
parent 7574cd4360
commit 3ca8721e99
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ static zval *ps_call_handler(zval *func, int argc, zval **argv)
convert_to_long(retval); \ convert_to_long(retval); \
ret = retval->value.lval; \ ret = retval->value.lval; \
zval_dtor(retval); \ zval_dtor(retval); \
efree(retval); \ FREE_ZVAL(retval); \
} \ } \
return ret return ret
@ -134,7 +134,7 @@ PS_READ_FUNC(user)
ret = SUCCESS; ret = SUCCESS;
} }
zval_dtor(retval); zval_dtor(retval);
efree(retval); FREE_ZVAL(retval);
} }
return ret; return ret;

View File

@ -478,7 +478,7 @@ PS_SERIALIZER_DECODE_FUNC(wddx)
} }
zval_dtor(retval); zval_dtor(retval);
efree(retval); FREE_ZVAL(retval);
return ret; return ret;
} }