Skip to content

Commit f1c4736

Browse files
committed
Merge branch 'PHP-8.4'
* PHP-8.4: Fix bogus fallthrough path in firebird_handle_get_attribute(), again
2 parents 380f854 + b21d2ca commit f1c4736

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ext/pdo_firebird/firebird_driver.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1250,8 +1250,7 @@ static int pdo_firebird_get_attribute(pdo_dbh_t *dbh, zend_long attr, zval *val)
12501250
ZVAL_STRING(val, tmp);
12511251
return 1;
12521252
}
1253-
/* TODO Check this is correct? */
1254-
ZEND_FALLTHROUGH;
1253+
return -1;
12551254

12561255
case PDO_ATTR_FETCH_TABLE_NAMES:
12571256
ZVAL_BOOL(val, H->fetch_table_names);

0 commit comments

Comments
 (0)