mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-24 00:17:52 +00:00
fix false positive file ood rule
This commit is contained in:
@@ -5942,7 +5942,7 @@ RD_VIEW_RULE_UI_FUNCTION_DEF(text)
|
||||
for(DI_KeyNode *n = dbgi_keys.first; n != 0; n = n->next)
|
||||
{
|
||||
DI_Key key = n->v;
|
||||
if(key.min_timestamp < file_timestamp)
|
||||
if(key.min_timestamp < file_timestamp && key.min_timestamp != 0 && key.path.size != 0)
|
||||
{
|
||||
file_is_out_of_date = 1;
|
||||
out_of_date_dbgi_name = str8_skip_last_slash(key.path);
|
||||
|
||||
Reference in New Issue
Block a user