diff options
| author | Dmitry Stogov <dmitry@zend.com> | 2017-10-03 09:08:28 +0300 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@zend.com> | 2017-10-03 09:08:28 +0300 |
| commit | 4d69587035f6d622134f86bbc9ee0afb00eeec88 (patch) | |
| tree | f1fda7a2f42ea201b866a50c4d0fcaac3ccbb27d /ext/oci8/oci8_statement.c | |
| parent | c8dea7ae1ebdb50bddf7f981ee30c35d5a5a878e (diff) | |
| download | php-git-4d69587035f6d622134f86bbc9ee0afb00eeec88.tar.gz | |
Fixed compilation errors
Diffstat (limited to 'ext/oci8/oci8_statement.c')
| -rw-r--r-- | ext/oci8/oci8_statement.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/oci8/oci8_statement.c b/ext/oci8/oci8_statement.c index 982e71ba6a..f2c380fd75 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_P(bind->zval) == IS_TRUE) || (Z_TYPE_P(bind->zval) == IS_FALSE)) { + } else if ((Z_TYPE(bind->val) == IS_TRUE) || (Z_TYPE(bind->val) == IS_FALSE)) { /* This convetrsion is done on purpose (ext/oci8 uses LVAL as a temorary value) */ - if (Z_LVAL_P(bind->zval) == 0) - ZVAL_BOOL(bind->zval, FALSE); - else if (Z_LVAL_P(bind->zval) == 1) - ZVAL_BOOL(bind->zval, TRUE); + if (Z_LVAL(bind->val) == 0) + ZVAL_BOOL(&bind->val, FALSE); + else if (Z_LVAL(bind->val) == 1) + ZVAL_BOOL(&bind->val, TRUE); } return 0; |
