We're using ZVAL's now.

This commit is contained in:
Andrei Zmievski 1999-12-21 17:14:31 +00:00
parent ff7a79c6cf
commit 80bab9d939
15 changed files with 29 additions and 29 deletions

View file

@ -497,7 +497,7 @@ JNIEXPORT void JNICALL Java_net_php_reflect_setResultFromObject
presult->value.obj.properties = (HashTable *) emalloc(sizeof(HashTable));
presult->is_ref=1;
presult->refcount=1;
zend_hash_init(presult->value.obj.properties, 0, NULL, PVAL_PTR_DTOR, 0);
zend_hash_init(presult->value.obj.properties, 0, NULL, ZVAL_PTR_DTOR, 0);
};
handle = (pval *) emalloc(sizeof(pval));