Use better macros

This commit is contained in:
Dmitry Stogov 2019-04-24 22:27:40 +03:00
parent 9e9407c22e
commit 21c36341af
2 changed files with 2 additions and 2 deletions

View file

@ -1396,7 +1396,7 @@ PHP_FUNCTION(xmlrpc_set_type)
zval tmp;
ZVAL_COPY(&tmp, Z_REFVAL_P(arg));
if (set_zval_xmlrpc_type(&tmp, vtype) == SUCCESS) {
ZEND_TRY_ASSIGN_REF_VALUE(arg, &tmp);
ZEND_TRY_ASSIGN_REF_TMP(arg, &tmp);
RETURN_TRUE;
}
Z_TRY_DELREF(tmp);