summaryrefslogtreecommitdiff
path: root/ext/intl/converter
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2018-05-08 17:30:15 +0300
committerDmitry Stogov <dmitry@zend.com>2018-05-08 17:30:15 +0300
commit524f5245c55223d36d1166554ca894fa77ea2dd1 (patch)
treeaa7e6e9fa7f37afe6cd4b9a3c8ce8d919cd2f15d /ext/intl/converter
parent9565075cbd57f226c77745f5e7c915635680784c (diff)
downloadphp-git-524f5245c55223d36d1166554ca894fa77ea2dd1.tar.gz
Avoid useless checks, using zend_string_efree(), in cases where the string is known to be a temporary allocated zend_string.
Diffstat (limited to 'ext/intl/converter')
-rw-r--r--ext/intl/converter/converter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/converter/converter.c b/ext/intl/converter/converter.c
index f54006fe69..e26173b10a 100644
--- a/ext/intl/converter/converter.c
+++ b/ext/intl/converter/converter.c
@@ -705,7 +705,7 @@ static zend_string* php_converter_do_convert(UConverter *dest_cnv,
efree(temp);
if (U_FAILURE(error)) {
THROW_UFAILURE(objval, "ucnv_fromUChars", error);
- zend_string_free(ret);
+ zend_string_efree(ret);
return NULL;
}