Fix crash with macro undefine
This commit is contained in:
parent
e312dddb12
commit
6331ec5707
|
@ -241,7 +241,7 @@ void MacroDict::Insert(Macro * macro)
|
|||
|
||||
for (int i = 0; i < size; i++)
|
||||
{
|
||||
if (entries[i])
|
||||
if (entries[i] && entries[i]->mIdent)
|
||||
Insert(entries[i]);
|
||||
}
|
||||
delete[] entries;
|
||||
|
|
Loading…
Reference in New Issue