Skip to content

Commit 8d4297d

Browse files
committed
Fix bug introduced by simplification
1 parent 2cb9773 commit 8d4297d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

soot-infoflow-summaries/src/soot/jimple/infoflow/methodSummary/taintWrappers/SummaryTaintWrapper.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1412,9 +1412,9 @@ protected AccessPathPropagator applyFlow(MethodFlow flow, AccessPathPropagator p
14121412
AccessPathPropagator pparent = propagator.getParent();
14131413
if (pparent == null) {
14141414
gap = null;
1415-
stmt = null;
1416-
d1 = null;
1417-
d2 = null;
1415+
stmt = propagator.getStmt();
1416+
d1 = propagator.getD1();
1417+
d2 = propagator.getD2();
14181418
} else {
14191419
gap = pparent.getGap();
14201420
stmt = pparent.getStmt();

0 commit comments

Comments
 (0)