diff options
author | Andrei Zmievski <andrei@php.net> | 1999-12-21 17:14:31 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 1999-12-21 17:14:31 +0000 |
commit | 80bab9d9394939c43e61300621aa7c72ab901ef7 (patch) | |
tree | 39fd30c7003962471e74271389d3353e6972dd8c /main | |
parent | ff7a79c6cfe6389510826eeda01732c8a5cda428 (diff) | |
download | php-git-80bab9d9394939c43e61300621aa7c72ab901ef7.tar.gz |
We're using ZVAL's now.
Diffstat (limited to 'main')
-rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index 2524c235df..d620520de3 100644 --- a/main/main.c +++ b/main/main.c @@ -1173,7 +1173,7 @@ void _php_build_argv(char *s ELS_DC) arr = (pval *) emalloc(sizeof(pval)); arr->value.ht = (HashTable *) emalloc(sizeof(HashTable)); - if (zend_hash_init(arr->value.ht, 0, NULL, PVAL_PTR_DTOR, 0) == FAILURE) { + if (zend_hash_init(arr->value.ht, 0, NULL, ZVAL_PTR_DTOR, 0) == FAILURE) { php_error(E_WARNING, "Unable to create argv array"); } else { arr->type = IS_ARRAY; |