Skip to content

Commit a386adb

Browse files
committed
Skip path reconstruction when there are no results
1 parent 2f1fdf5 commit a386adb

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

soot-infoflow/src/soot/jimple/infoflow/AbstractInfoflow.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,6 +1339,9 @@ else if (logger.isInfoEnabled()) {
13391339
*/
13401340
protected void reconstructPaths(IAbstractionPathBuilder builder, InterruptableExecutor executor,
13411341
Set<AbstractionAtSink> ifdsResults) {
1342+
if (ifdsResults.isEmpty())
1343+
return;
1344+
13421345
FlowDroidTimeoutWatcher pathTimeoutWatcher = null;
13431346

13441347
try {

0 commit comments

Comments
 (0)