mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-2288 Check for dead PcodeOps in DynamicHash
This commit is contained in:
parent
cbb60665b8
commit
beff48fb27
1 changed files with 1 additions and 0 deletions
|
@ -435,6 +435,7 @@ void DynamicHash::gatherFirstLevelVars(vector<Varnode *> &varlist,const Funcdata
|
||||||
while(iter!=enditer) {
|
while(iter!=enditer) {
|
||||||
PcodeOp *op = (*iter).second;
|
PcodeOp *op = (*iter).second;
|
||||||
++iter;
|
++iter;
|
||||||
|
if (op->isDead()) continue;
|
||||||
if (op->code() != opc) continue;
|
if (op->code() != opc) continue;
|
||||||
if (slot <0) {
|
if (slot <0) {
|
||||||
Varnode *vn = op->getOut();
|
Varnode *vn = op->getOut();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue