mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 13:58:40 +00:00
fix bounds check condition in assert
This commit is contained in:
@@ -1801,7 +1801,7 @@ cv_dedup_symbol_ptr_array(TP_Context *tp, CV_SymbolPtrArray *symbols)
|
|||||||
}
|
}
|
||||||
ProfEnd();
|
ProfEnd();
|
||||||
|
|
||||||
Assert(unique_symbol_count < symbols->count);
|
Assert(unique_symbol_count <= symbols->count);
|
||||||
symbols->count = unique_symbol_count;
|
symbols->count = unique_symbol_count;
|
||||||
|
|
||||||
ProfBeginDynamic("Sort [Count %llu]", symbols->count);
|
ProfBeginDynamic("Sort [Count %llu]", symbols->count);
|
||||||
|
|||||||
Reference in New Issue
Block a user