guard against name collisions in call stack root expression; need to explicitly resolve against debugger-defined names

This commit is contained in:
Ryan Fleury
2024-10-10 15:34:31 -07:00
parent 79b2bcf37a
commit b9f931a749
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -348,6 +348,7 @@ di_open(DI_Key *key)
internal void
di_close(DI_Key *key)
{
ProfBeginFunction();
Temp scratch = scratch_begin(0, 0);
if(key->path.size != 0)
{
@@ -405,6 +406,7 @@ di_close(DI_Key *key)
}
}
}
ProfEnd();
scratch_end(scratch);
}