We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d0d399 + 30ee2b9 commit c0bb653Copy full SHA for c0bb653
1 file changed
src/common.c
@@ -157,9 +157,9 @@ void smart_str_appendz(smart_str *buffer, zval *value)
157
return;
158
}
159
160
- zend_string *str = zval_get_string(value);
+ zend_string *str = zval_get_string_func(value);
161
smart_str_append(buffer, str);
162
- zend_string_free(str);
+ zend_string_release_ex(str, false);
163
164
165
zend_string *ds_join_zval_buffer(
0 commit comments