From: Michael Wallner Date: Mon, 9 Feb 2015 09:36:25 +0000 (+0100) Subject: fix the fix X-Git-Tag: release-2.0.0RC1~20 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-raphf;a=commitdiff_plain;h=420e806326b7c9be3130e5d97055b6215d6c7b8d fix the fix --- diff --git a/php_raphf.c b/php_raphf.c index a62897d..4ce908e 100644 --- a/php_raphf.c +++ b/php_raphf.c @@ -250,9 +250,9 @@ static inline php_persistent_handle_list_t *php_persistent_handle_list_find( if ((GC_FLAGS(ident) & IS_STR_PERSISTENT)) { id = ident; } else { - ident = zend_string_dup(ident, 1); + id = zend_string_dup(ident, 1); } - rv = zend_symtable_update(&provider->list.free, ident, &p); + rv = zend_symtable_update(&provider->list.free, id, &p); if (id != ident) { zend_string_release(id); }