From e1410b5a70543856de3978603b41fbf2ca5d330c Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Thu, 10 Jan 2013 18:53:10 +0400 Subject: Fixed uninitialized zval.type (Yoram) --- win32/registry.c | 1 + 1 file changed, 1 insertion(+) (limited to 'win32/registry.c') diff --git a/win32/registry.c b/win32/registry.c index 638d85ae52..685a09d084 100644 --- a/win32/registry.c +++ b/win32/registry.c @@ -91,6 +91,7 @@ static int LoadDirectory(HashTable *directories, HKEY key, char *path, int path_ INIT_PZVAL(data); Z_STRVAL_P(data) = zend_strndup(value, value_len-1); Z_STRLEN_P(data) = value_len-1; + Z_TYPE_P(data) = IS_STRING; zend_hash_update(ht, name, name_len+1, &data, sizeof(zval*), NULL); } } -- cgit v1.2.1