From: Johannes Schlüter Date: Tue, 17 May 2011 00:16:57 +0000 (+0000) Subject: - Move the field access behind the check X-Git-Tag: php-5.5.0alpha1~2080 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b83b4880d3725686fd4c70163428cb7013df310a;p=php - Move the field access behind the check # Only called from one place where the connection is checked, but # playing safe, again (parfait) --- 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;