Skip to content

Commit

Permalink
Fix cut and paste bug that was showing same eq cond trace for EQUIV a…
Browse files Browse the repository at this point in the history
…nd DIFF.
  • Loading branch information
jim-carciofini committed May 8, 2024
1 parent dfd59cb commit f326524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pate_binja/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ def showCfarEqCondDialog(self, cfarNode: pate.CFARNode):
pate.pprint_symbolic(out, cfarNode.predicate)
d.eqCondField.appendPlainText(out.getvalue())
d.setTrueTrace(cfarNode.trace_true)
d.setFalseTrace(cfarNode.trace_true)
d.setFalseTrace(cfarNode.trace_false)
d.exec()

def edgePopupMenu(self, event: QMouseEvent, edgeTuple: tuple[FlowGraphEdge, bool]):
Expand Down

0 comments on commit f326524

Please sign in to comment.