From: Anatol Belski Date: Thu, 11 Aug 2016 13:08:26 +0000 (+0200) Subject: fix borked interbase patch X-Git-Tag: php-7.2.0alpha1~1541 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a08836d47ad8002823af01735e08004bb851738;p=php fix borked interbase patch --- diff --git a/ext/interbase/ibase_query.c b/ext/interbase/ibase_query.c index 77de9f77e4..8923a8c55d 100644 --- a/ext/interbase/ibase_query.c +++ b/ext/interbase/ibase_query.c @@ -1109,7 +1109,7 @@ PHP_FUNCTION(ibase_query) isc_db_handle db = 0; isc_tr_handle trans = 0; - } else if (((l = INI_INT("ibase.max_links")) != -1) && (IBG(num_links) >= l)) { + if (((l = INI_INT("ibase.max_links")) != -1) && (IBG(num_links) >= l)) { _php_ibase_module_error("CREATE DATABASE is not allowed: maximum link count " "(" ZEND_LONG_FMT ") reached", l);