diff options
Diffstat (limited to 'ext/intl/intl_error.c')
-rw-r--r-- | ext/intl/intl_error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/intl_error.c b/ext/intl/intl_error.c index f80eea106a..d802eb9c26 100644 --- a/ext/intl/intl_error.c +++ b/ext/intl/intl_error.c @@ -280,7 +280,7 @@ smart_str intl_parse_error_to_string( UParseError* pe ) } else { smart_str_append( &ret, u8str ); - zend_string_release( u8str ); + zend_string_release_ex( u8str, 0 ); } smart_str_appends( &ret, "\"" ); any = 1; @@ -300,7 +300,7 @@ smart_str intl_parse_error_to_string( UParseError* pe ) else { smart_str_append( &ret, u8str ); - zend_string_release( u8str ); + zend_string_release_ex( u8str, 0 ); } smart_str_appends( &ret, "\"" ); any = 1; |