mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
More instances of s/efree/FREE_ZVAL/
This commit is contained in:
parent
7574cd4360
commit
3ca8721e99
@ -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;
|
||||
|
@ -478,7 +478,7 @@ PS_SERIALIZER_DECODE_FUNC(wddx)
|
||||
}
|
||||
|
||||
zval_dtor(retval);
|
||||
efree(retval);
|
||||
FREE_ZVAL(retval);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user