From 24e595bf26279c315a7f120f866160e0a0833fad Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 3 Oct 2017 10:49:56 +0300 Subject: Use dereferenced value --- ext/oci8/oci8_statement.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ext/oci8/oci8_statement.c b/ext/oci8/oci8_statement.c index f2c380fd75..f0cb16425a 100644 --- a/ext/oci8/oci8_statement.c +++ b/ext/oci8/oci8_statement.c @@ -1083,12 +1083,12 @@ int php_oci_bind_post_exec(zval *data) } break; } - } else if ((Z_TYPE(bind->val) == IS_TRUE) || (Z_TYPE(bind->val) == IS_FALSE)) { + } else if ((Z_TYPE_P(zv) == IS_TRUE) || (Z_TYPE_P(zv) == IS_FALSE)) { /* This convetrsion is done on purpose (ext/oci8 uses LVAL as a temorary value) */ - if (Z_LVAL(bind->val) == 0) - ZVAL_BOOL(&bind->val, FALSE); - else if (Z_LVAL(bind->val) == 1) - ZVAL_BOOL(&bind->val, TRUE); + if (Z_LVAL_P(zv) == 0) + ZVAL_BOOL(zv, FALSE); + else if (Z_LVAL_P(zv) == 1) + ZVAL_BOOL(zv, TRUE); } return 0; -- cgit v1.2.1