diff options
author | Zeev Suraski <zeev@php.net> | 1999-07-09 20:45:55 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-07-09 20:45:55 +0000 |
commit | c43c235427418d610f749b97d4a1228b0191a7ed (patch) | |
tree | 0c3cd7d5242e2dd0413bcd1e5919067e04bdd72a /ext/oracle/oracle.c | |
parent | 2a6da7814c27a7e851c8c7a883441ae9d34cd95c (diff) | |
download | php-git-c43c235427418d610f749b97d4a1228b0191a7ed.tar.gz |
Don't touch refcount and EA directly
Diffstat (limited to 'ext/oracle/oracle.c')
-rw-r--r-- | ext/oracle/oracle.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/oracle/oracle.c b/ext/oracle/oracle.c index 2b0a22ae7f..ace254cb57 100644 --- a/ext/oracle/oracle.c +++ b/ext/oracle/oracle.c @@ -1225,8 +1225,7 @@ void php3_Ora_FetchInto(INTERNAL_FUNCTION_PARAMETERS) } else { #if PHP_API_VERSION >= 19990421 tmp = emalloc(sizeof(pval)); - tmp->EA = 0; - tmp->refcount = 1; + INIT_PZVAL(tmp); #endif tmp->type = IS_STRING; |