mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-13 07:32:23 -07:00
fix incorrect match range list copying in new searcher threads
This commit is contained in:
+2
-2
@@ -1381,9 +1381,9 @@ di_search_thread__entry_point(void *p)
|
||||
MemoryCopy(items.v + off, chunk->v, sizeof(chunk->v[0])*chunk->count);
|
||||
for EachIndex(idx, chunk->count)
|
||||
{
|
||||
items.v[off+idx].match_ranges = fuzzy_match_range_list_copy(arena, &items.v[idx].match_ranges);
|
||||
items.v[off + idx].match_ranges = fuzzy_match_range_list_copy(arena, &items.v[off + idx].match_ranges);
|
||||
}
|
||||
off+= chunk->count;
|
||||
off += chunk->count;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user