diff options
| author | Dmitry Stogov <dmitry@zend.com> | 2018-05-08 17:30:15 +0300 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@zend.com> | 2018-05-08 17:30:15 +0300 |
| commit | 524f5245c55223d36d1166554ca894fa77ea2dd1 (patch) | |
| tree | aa7e6e9fa7f37afe6cd4b9a3c8ce8d919cd2f15d /ext/pgsql | |
| parent | 9565075cbd57f226c77745f5e7c915635680784c (diff) | |
| download | php-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/pgsql')
| -rw-r--r-- | ext/pgsql/pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 81a1bdbb3c..f0873ce854 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -3531,7 +3531,7 @@ PHP_FUNCTION(pg_lo_read) buf = zend_string_alloc(buf_len, 0); if ((nbytes = lo_read((PGconn *)pgsql->conn, pgsql->lofd, ZSTR_VAL(buf), ZSTR_LEN(buf)))<0) { - zend_string_free(buf); + zend_string_efree(buf); RETURN_FALSE; } |
