mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 13:19:05 +00:00
AK: Zero previous pointer *after* fixing the insertion list in HashTable
This commit is contained in:
parent
f03838fac8
commit
5bf84a5b0e
Notes:
sideshowbarker
2024-07-17 10:01:25 +09:00
Author: https://github.com/Hendiadyoin1
Commit: 5bf84a5b0e
Pull-request: https://github.com/SerenityOS/serenity/pull/14363
Reviewed-by: https://github.com/IdanHo
2 changed files with 10 additions and 1 deletions
|
@ -300,3 +300,12 @@ BENCHMARK_CASE(benchmark_thrashing)
|
|||
table.remove(i);
|
||||
}
|
||||
}
|
||||
|
||||
TEST_CASE(reinsertion)
|
||||
{
|
||||
OrderedHashTable<String> map;
|
||||
map.set("ytidb::LAST_RESULT_ENTRY_KEY");
|
||||
map.set("__sak");
|
||||
map.remove("__sak");
|
||||
map.set("__sak");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue