Detect if setSymbolProperties has been previously applied

This commit is contained in:
caheckman 2020-01-21 17:05:40 -05:00
parent 885402bbc3
commit a3988a7db2
3 changed files with 13 additions and 8 deletions

View file

@ -1128,8 +1128,8 @@ bool Funcdata::attemptDynamicMapping(SymbolEntry *entry,DynamicHash &dhash)
}
}
else if (entry->getSize() == vn->getSize()) {
vn->setSymbolProperties(entry);
return true;
if (vn->setSymbolProperties(entry))
return true;
}
return false;
}