1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00

Merge branch 'PHP-8.1' into PHP-8.2

* PHP-8.1:
  Fix GH-9971: Incorrect NUMERIC value returned from PDO_Firebird
This commit is contained in:
Christoph M. Becker
2022-11-30 12:12:51 +01:00
2 changed files with 6 additions and 0 deletions
+4
View File
@@ -39,6 +39,10 @@ PHP NEWS
. Fixed bug GH-9298 (Signal handler called after rshutdown leads to crash).
(Erki Aring)
- PDO_Firebird:
. Fixed bug GH-9971 (Incorrect NUMERIC value returned from PDO_Firebird).
(cmb)
- Session:
. Fixed GH-9932 (session name silently fails with . and [). (David Carlier)
+2
View File
@@ -385,6 +385,8 @@ static int firebird_stmt_get_col(
case SQL_INT64:
n = *(ISC_INT64*)var->sqldata;
break;
case SQL_DOUBLE:
break;
EMPTY_SWITCH_DEFAULT_CASE()
}