From: Yasuo Ohgaki Date: Tue, 12 Feb 2002 10:01:08 +0000 (+0000) Subject: Initialize automatic persistent connection reset flag X-Git-Tag: php-4.2.0RC1~364 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c1507e1e40f8de576698d01ce062d6fc17490acc;p=php Initialize automatic persistent connection reset flag --- diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 1db41aea6a..4ed4046844 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -302,6 +302,7 @@ static void php_pgsql_init_globals(php_pgsql_globals *pgsql_globals_p TSRMLS_DC) { PGG(num_persistent) = 0; PGG(ignore_notices) = 0; + PGG(auto_reset_persistent) = 0; } /* }}} */