GP-2288 Check for dead PcodeOps in DynamicHash

This commit is contained in:
caheckman 2022-07-05 19:07:53 -04:00
parent cbb60665b8
commit beff48fb27

View file

@ -435,6 +435,7 @@ void DynamicHash::gatherFirstLevelVars(vector<Varnode *> &varlist,const Funcdata
while(iter!=enditer) {
PcodeOp *op = (*iter).second;
++iter;
if (op->isDead()) continue;
if (op->code() != opc) continue;
if (slot <0) {
Varnode *vn = op->getOut();