summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Jones <sixd@php.net>2018-09-24 20:53:31 +1000
committerChristopher Jones <sixd@php.net>2018-09-24 20:53:31 +1000
commit1d67577f4d6654ecb74eacae203fe3526ae2747e (patch)
tree83a3ca83810422c66718648ddeac8c940d470b50
parente6fae9e6f9559fb6a6bfb228ff68a7685971291f (diff)
parent682d0f83252783f474e5a6cd9c6f29e40b69d400 (diff)
downloadphp-git-1d67577f4d6654ecb74eacae203fe3526ae2747e.tar.gz
Merge branch 'PHP-7.2' into PHP-7.3
-rw-r--r--ext/oci8/oci8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c
index 63fb334c99..aac2484d3e 100644
--- a/ext/oci8/oci8.c
+++ b/ext/oci8/oci8.c
@@ -1788,12 +1788,12 @@ php_oci_connection *php_oci_do_connect_ex(char *username, int username_len, char
timestamp = time(NULL);
smart_str_append_unsigned_ex(&hashed_details, session_mode, 0);
- smart_str_0(&hashed_details);
-
if (persistent) {
smart_str_appendl_ex(&hashed_details, "pc", sizeof("pc") - 1, 0);
}
+ smart_str_0(&hashed_details);
+
/* make it lowercase */
php_strtolower(ZSTR_VAL(hashed_details.s), ZSTR_LEN(hashed_details.s));