summaryrefslogtreecommitdiff
path: root/ext/pdo_oci/oci_driver.c
diff options
context:
space:
mode:
authorShivam Mathur <shivam_jpr@hotmail.com>2021-01-09 06:16:05 +0530
committerGeorge Peter Banyard <girgias@php.net>2021-01-09 04:27:40 +0000
commitc1391227da78c016f26a060ce8db9a2dab6e4d5c (patch)
treed5eb17a3a1d3d8129bfff96f100a6c28c5a9c7b2 /ext/pdo_oci/oci_driver.c
parentb3c5b8cf2485ea99eede9bfa245d26fdb4eeb6c3 (diff)
downloadphp-git-c1391227da78c016f26a060ce8db9a2dab6e4d5c.tar.gz
Fix pdo_oci - declare quotedlen in oci_driver.c
Closes GH-6590
Diffstat (limited to 'ext/pdo_oci/oci_driver.c')
-rw-r--r--ext/pdo_oci/oci_driver.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pdo_oci/oci_driver.c b/ext/pdo_oci/oci_driver.c
index 415af87c66..68a52051f6 100644
--- a/ext/pdo_oci/oci_driver.c
+++ b/ext/pdo_oci/oci_driver.c
@@ -355,6 +355,7 @@ static zend_string* oci_handle_quoter(pdo_dbh_t *dbh, const zend_string *unquote
int qcount = 0;
char const *cu, *l, *r;
char *c, *quoted;
+ size_t quotedlen;
zend_string *quoted_str;
if (ZSTR_LEN(unquoted) == 0) {