Skip to content

Commit 810999a

Browse files
committed
Merge branch 'PHP-8.3'
* PHP-8.3: Fix bogus fallthrough path in firebird_handle_get_attribute()
2 parents e406ec8 + 46924ac commit 810999a

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
@@ -1185,8 +1185,7 @@ static int pdo_firebird_get_attribute(pdo_dbh_t *dbh, zend_long attr, zval *val)
11851185
ZVAL_STRING(val, tmp);
11861186
return 1;
11871187
}
1188-
/* TODO Check this is correct? */
1189-
ZEND_FALLTHROUGH;
1188+
return -1;
11901189

11911190
case PDO_ATTR_FETCH_TABLE_NAMES:
11921191
ZVAL_BOOL(val, H->fetch_table_names);

0 commit comments

Comments
 (0)