diff options
| author | Zeev Suraski <zeev@php.net> | 1999-12-26 21:21:33 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 1999-12-26 21:21:33 +0000 |
| commit | 235386b24569eb5d41baffa88151550ba04992ce (patch) | |
| tree | 0db42a31df098a289a813527b823098d41bd5312 /ext/dav/dav.c | |
| parent | c517633b4963b684fd9f43704a72bcbbe4d30bf2 (diff) | |
| download | php-git-235386b24569eb5d41baffa88151550ba04992ce.tar.gz | |
Change ALLOC_ZVAL() semantics
Diffstat (limited to 'ext/dav/dav.c')
| -rw-r--r-- | ext/dav/dav.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dav/dav.c b/ext/dav/dav.c index 0b520f206a..84352dfcf8 100644 --- a/ext/dav/dav.c +++ b/ext/dav/dav.c @@ -192,7 +192,7 @@ dav_call_handler(char *funcName, int argc, pval **argv) HashTable *function_table; func = php3i_string_pval(funcName); - retval = ALLOC_ZVAL(); + ALLOC_ZVAL(retval); function_table = php3i_get_function_table(); if (call_user_function(function_table, NULL, func, retval, argc, argv) == FAILURE) { php3tls_pval_destructor(retval); |
