summaryrefslogtreecommitdiff
path: root/ext/standard/file.c
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/standard/file.c
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/standard/file.c')
-rw-r--r--ext/standard/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c
index bb497616e0..096d70e12c 100644
--- a/ext/standard/file.c
+++ b/ext/standard/file.c
@@ -1047,7 +1047,7 @@ PHPAPI PHP_FUNCTION(fgets)
str = zend_string_alloc(len, 0);
if (php_stream_get_line(stream, ZSTR_VAL(str), len, &line_len) == NULL) {
- zend_string_free(str);
+ zend_string_efree(str);
RETURN_FALSE;
}
/* resize buffer if it's much larger than the result.