Skip to content

Commit

Permalink
Merge pull request #309 from Nizernizer/main
Browse files Browse the repository at this point in the history
fix bug: COOKIE_FLAGS_MISSING
  • Loading branch information
Nizernizer authored May 16, 2022
2 parents ddd7b16 + b8a6b95 commit cc3d78c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ public boolean collectMethodPool(Object instance, Object[] argumentArray, Object
PropagatorImpl.solvePropagator(event, INVOKE_ID_SEQUENCER);
} else if (HookType.SOURCE.equals(hookType)) {
SourceImpl.solveSource(event, INVOKE_ID_SEQUENCER);
} else if (HookType.SINK.equals(hookType) && !EngineManager.TAINT_POOL.get().isEmpty()) {
} else if (HookType.SINK.equals(hookType)) {
SinkImpl.solveSink(event);
}
}
Expand Down

0 comments on commit cc3d78c

Please sign in to comment.