mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 13:58:40 +00:00
fix incorrect singly-linked-list/doubly-linked-list mismatch in dbgi search cache
This commit is contained in:
+1
-1
@@ -687,7 +687,7 @@ di_search_items_from_key_params_query(DI_Scope *scope, U128 key, DI_SearchParams
|
|||||||
{
|
{
|
||||||
node = push_array(stripe->arena, DI_SearchNode, 1);
|
node = push_array(stripe->arena, DI_SearchNode, 1);
|
||||||
}
|
}
|
||||||
SLLQueuePush(slot->first, slot->last, node);
|
DLLPushBack(slot->first, slot->last, node);
|
||||||
node->key = key;
|
node->key = key;
|
||||||
for(U64 idx = 0; idx < ArrayCount(node->buckets); idx += 1)
|
for(U64 idx = 0; idx < ArrayCount(node->buckets); idx += 1)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user