fix impossible disasm loading condition; do not go wide on dbgi matching unless we have significant-enough dbgis

This commit is contained in:
Ryan Fleury
2025-10-07 11:34:30 -07:00
parent fadef8a886
commit 2acf77ad9e
9 changed files with 59 additions and 20 deletions
+1 -1
View File
@@ -202,7 +202,7 @@ c_submit_data(C_Key key, Arena **data_arena, String8 data)
}
// rjf: release duplicate data if node already exists
if(node != 0)
if(node != 0 && data_arena != 0 && *data_arena != 0)
{
arena_release(*data_arena);
}