summaryrefslogtreecommitdiff
path: root/ext/pdo_oci/oci_driver.c
diff options
context:
space:
mode:
authorChristopher Jones <sixd@php.net>2020-09-10 17:37:18 +1000
committerChristopher Jones <sixd@php.net>2020-09-10 17:37:18 +1000
commit14657ec42d9700b8c0222104b9a142c3ed038bb7 (patch)
tree251dc47cb5da4ef5bf0e3ae017b2efd48bfd5466 /ext/pdo_oci/oci_driver.c
parentbca32de0c7d030e75d052fb51255bc9303fa010c (diff)
downloadphp-git-14657ec42d9700b8c0222104b9a142c3ed038bb7.tar.gz
Squash compile warnings the easy way
Diffstat (limited to 'ext/pdo_oci/oci_driver.c')
-rw-r--r--ext/pdo_oci/oci_driver.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/pdo_oci/oci_driver.c b/ext/pdo_oci/oci_driver.c
index d2115b81b8..096a26575e 100644
--- a/ext/pdo_oci/oci_driver.c
+++ b/ext/pdo_oci/oci_driver.c
@@ -705,7 +705,9 @@ static const struct pdo_dbh_methods oci_methods = {
pdo_oci_fetch_error_func,
oci_handle_get_attribute,
pdo_oci_check_liveness, /* check_liveness */
- NULL /* get_driver_methods */
+ NULL, /* get_driver_methods */
+ NULL,
+ NULL
};
static int pdo_oci_handle_factory(pdo_dbh_t *dbh, zval *driver_options) /* {{{ */