mirror of
https://github.com/phpredis/phpredis.git
synced 2026-06-19 07:35:31 +00:00
We don't want to efree a zend_string
This commit is contained in:
+1
-1
@@ -455,7 +455,7 @@ PS_OPEN_FUNC(redis)
|
||||
|
||||
if ((url->path == NULL && url->host == NULL) || weight <= 0 || timeout <= 0) {
|
||||
php_url_free(url);
|
||||
if (persistent_id) efree(persistent_id);
|
||||
if (persistent_id) zend_string_release(persistent_id);
|
||||
if (prefix) zend_string_release(prefix);
|
||||
if (user) zend_string_release(user);
|
||||
if (pass) zend_string_release(pass);
|
||||
|
||||
Reference in New Issue
Block a user