diff options
author | Andi Gutmans <andi@php.net> | 1999-12-24 17:39:27 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 1999-12-24 17:39:27 +0000 |
commit | 3bf1b04cb45a6b9c6ddbf81d74804a582f6361c0 (patch) | |
tree | 6877a95133675e50757726515246ca7e0ded8d6e /apidoc-zend.txt | |
parent | e28aff2f7aa02824142bf425b65c74b0bcd9622a (diff) | |
download | php-git-3bf1b04cb45a6b9c6ddbf81d74804a582f6361c0.tar.gz |
- Move more stuff to ALLOC_ZVAL(). We need to add those FREE_ZVAL()'s now.
Diffstat (limited to 'apidoc-zend.txt')
-rw-r--r-- | apidoc-zend.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apidoc-zend.txt b/apidoc-zend.txt index 4667ed501a..1b4a4f7f91 100644 --- a/apidoc-zend.txt +++ b/apidoc-zend.txt @@ -64,7 +64,7 @@ php3_write() php4_write() { - pval *newval = (pval *) emalloc(sizeof(pval)); + pval *newval = ALLOC_ZVAL(); newval->refcount=1; newval->is_ref=0; |