mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Fix GH-11451: Invalid associative array containing duplicate keys
It used the "add_new" variant which assumes the key doesn't already exist. But in case of duplicate keys we have to take the last result. Closes GH-11453.
This commit is contained in:
4
NEWS
4
NEWS
@@ -63,6 +63,10 @@ PHP NEWS
|
||||
. Fix access on NULL pointer in array_merge_recursive(). (ilutov)
|
||||
. Fix exception handling in array_multisort(). (ilutov)
|
||||
|
||||
- SQLite3:
|
||||
. Fixed bug GH-11451 (Invalid associative array containing duplicate
|
||||
keys). (nielsdos)
|
||||
|
||||
08 Jun 2023, PHP 8.2.7
|
||||
|
||||
- Core:
|
||||
|
||||
@@ -1982,7 +1982,9 @@ PHP_METHOD(SQLite3Result, fetchArray)
|
||||
Z_ADDREF(data);
|
||||
}
|
||||
}
|
||||
zend_symtable_add_new(Z_ARR_P(return_value), result_obj->column_names[i], &data);
|
||||
/* Note: we can't use the "add_new" variant here instead of "update" because
|
||||
* when the same column name is encountered, the last result should be taken. */
|
||||
zend_symtable_update(Z_ARR_P(return_value), result_obj->column_names[i], &data);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
25
ext/sqlite3/tests/gh11451.phpt
Normal file
25
ext/sqlite3/tests/gh11451.phpt
Normal file
@@ -0,0 +1,25 @@
|
||||
--TEST--
|
||||
GH-11451 (Invalid associative array containing duplicate keys)
|
||||
--EXTENSIONS--
|
||||
sqlite3
|
||||
--FILE--
|
||||
<?php
|
||||
var_dump((new SQLite3(':memory:'))
|
||||
->query('SELECT 1 AS key, 2 AS key')
|
||||
->fetchArray(SQLITE3_ASSOC));
|
||||
|
||||
var_dump((new SQLite3(':memory:'))
|
||||
->query('SELECT 0 AS dummy, 1 AS key, 2 AS key')
|
||||
->fetchArray(SQLITE3_ASSOC));
|
||||
?>
|
||||
--EXPECT--
|
||||
array(1) {
|
||||
["key"]=>
|
||||
int(2)
|
||||
}
|
||||
array(2) {
|
||||
["dummy"]=>
|
||||
int(0)
|
||||
["key"]=>
|
||||
int(2)
|
||||
}
|
||||
Reference in New Issue
Block a user