From fd42b5064c497e500e5745bf36d1b0ddd5bd34bd Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Sat, 24 Apr 2010 00:44:56 +0000 Subject: [PATCH] Initialize vars to prevent valgrind warnings in some cases --- ext/oci8/oci8_statement.c | 3 +++ 1 file changed, 3 insertions(+) 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, -- 2.40.0