From: Xinchen Hui Date: Mon, 19 May 2014 06:57:17 +0000 (+0800) Subject: Fixed memleak (3 tests fails now) X-Git-Tag: POST_PHPNG_MERGE~323^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8160322851a30dc908ec4681c20d3b86af1f199;p=php Fixed memleak (3 tests fails now) --- diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index be1f31cc6f..9d8cf2d9b3 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -1357,7 +1357,7 @@ static void php_pgsql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent) /* hash it up */ new_le.type = le_plink; new_le.ptr = pgsql; - if (zend_hash_update_mem(&EG(persistent_list), str.s, &new_le, sizeof(zend_resource)) == NULL) { + if (zend_hash_str_update_mem(&EG(persistent_list), str.s->val, str.s->len, &new_le, sizeof(zend_resource)) == NULL) { goto err; } PGG(num_links)++;