diff options
author | Christopher Jones <sixd@php.net> | 2010-04-24 00:44:56 +0000 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2010-04-24 00:44:56 +0000 |
commit | eb0a3ff1af273d916258b2c59fa3289d5585dc13 (patch) | |
tree | 6014de041a9f2b6f3c067cad92f8983dcf000d74 | |
parent | af6dd192b3b27988e9871be6f72e5e6f3b388d02 (diff) | |
download | php-git-eb0a3ff1af273d916258b2c59fa3289d5585dc13.tar.gz |
Initialize vars to prevent valgrind warnings in some cases
-rw-r--r-- | ext/oci8/oci8_statement.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/oci8/oci8_statement.c b/ext/oci8/oci8_statement.c index f7fda511a7..fc7296fb3c 100644 --- a/ext/oci8/oci8_statement.c +++ b/ext/oci8/oci8_statement.c @@ -1457,6 +1457,9 @@ int php_oci_bind_array_by_name(php_oci_statement *statement, char *name, int nam bindp->bind = NULL; bindp->zval = var; bindp->array.type = type; + bindp->indicator = 0; /* not used for array binds */ + bindp->type = 0; /* not used for array binds */ + zval_add_ref(&var); PHP_OCI_CALL_RETURN(statement->errcode, |