fix crash in hex editor when rightclicking address with empty symbolic name
This commit is contained in:
parent
c7df3a0123
commit
9cd3ac5353
|
@ -642,7 +642,7 @@ void UpdateCaption()
|
|||
// when watching RAM we may as well see Symbolic Debug names
|
||||
loadNameFiles();
|
||||
Name* node = findNode(getNamesPointerForAddress(CursorStartAddy), CursorStartAddy);
|
||||
if (node)
|
||||
if (node && node->name)
|
||||
{
|
||||
strcat(str, " - ");
|
||||
strcat(str, node->name);
|
||||
|
|
Loading…
Reference in New Issue