summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schlüter <johannes@php.net>2011-05-17 00:16:57 +0000
committerJohannes Schlüter <johannes@php.net>2011-05-17 00:16:57 +0000
commit85eb08885b097eaa4a064ced6cdf4bd80331a097 (patch)
tree02a26398f921da330b3945b3c409de26f0a44fe7
parent469b6d2b9ef4e88b6fa69aa5cf7e085d5c15b501 (diff)
downloadphp-git-85eb08885b097eaa4a064ced6cdf4bd80331a097.tar.gz
- Move the field access behind the check
# Only called from one place where the connection is checked, but # playing safe, again (parfait)
-rw-r--r--ext/mysqlnd/mysqlnd_wireprotocol.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.c b/ext/mysqlnd/mysqlnd_wireprotocol.c
index 795e0cd410..ff354eec3d 100644
--- a/ext/mysqlnd/mysqlnd_wireprotocol.c
+++ b/ext/mysqlnd/mysqlnd_wireprotocol.c
@@ -2380,11 +2380,10 @@ mysqlnd_protocol_init(zend_bool persistent TSRMLS_DC)
PHPAPI void
mysqlnd_protocol_free(MYSQLND_PROTOCOL * const protocol TSRMLS_DC)
{
- zend_bool pers = protocol->persistent;
-
DBG_ENTER("mysqlnd_protocol_free");
if (protocol) {
+ zend_bool pers = protocol->persistent;
mnd_pefree(protocol, pers);
}
DBG_VOID_RETURN;