From 420e806326b7c9be3130e5d97055b6215d6c7b8d Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 9 Feb 2015 10:36:25 +0100 Subject: [PATCH] fix the fix --- php_raphf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.30.2