diff options
author | Dmitry Stogov <dmitry@zend.com> | 2013-01-10 18:53:10 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2013-01-10 18:53:10 +0400 |
commit | e1410b5a70543856de3978603b41fbf2ca5d330c (patch) | |
tree | 237cd6d4ed2208d403ca3ab38e84c438ee87a22d /win32 | |
parent | dc9f0e70b78b5ea998f319c63fb181eb4f5bda41 (diff) | |
download | php-git-e1410b5a70543856de3978603b41fbf2ca5d330c.tar.gz |
Fixed uninitialized zval.type (Yoram)
Diffstat (limited to 'win32')
-rw-r--r-- | win32/registry.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); } } |