We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad7920f commit c576b27Copy full SHA for c576b27
1 file changed
soot-infoflow/src/soot/jimple/infoflow/data/pathBuilders/ConcurrentAbstractionPathBuilder.java
@@ -59,10 +59,10 @@ public void computeTaintPaths(final Set<AbstractionAtSink> res) {
59
long startTime = System.nanoTime();
60
long totalTime = manager.getConfig().getPathConfiguration().getPathReconstructionTotalTime();
61
62
- for (final AbstractionAtSink abs : res) {
63
- // We need to reset the executor before we can submit new jobs
64
- executor.reset();
+ // We need to reset the executor before we can submit new jobs
+ executor.reset();
65
+ for (final AbstractionAtSink abs : res) {
66
// The solver may already have been killed
67
if (killFlag != null) {
68
// Reduce the memory pressure
0 commit comments