fix merge mistake

This commit is contained in:
Anatol Belski 2016-01-04 17:33:23 +01:00
parent ef4449a8e8
commit b0285db4b7

View file

@ -517,7 +517,7 @@ static XMLRPC_VALUE PHP_to_XMLRPC_worker (const char* key, zval* in_val, int dep
if (Z_TYPE(val) != IS_STRING) {
zval newvalue;
ZVAL_DUP(&newvalue, &val);
convert_to_string(newvalue);
convert_to_string(&newvalue);
xReturn = XMLRPC_CreateValueBase64(key, Z_STRVAL(newvalue), Z_STRLEN(newvalue));
zval_dtor(&newvalue);
} else {