From 07cf58004273a6dcbab4472a2a5aa69ca4c66d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Tue, 20 Oct 2015 23:00:55 +0200 Subject: [PATCH] Issue #1060 and fix --- libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java | 1 + 1 file changed, 1 insertion(+) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java index 6857f73d9..46b002c91 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java @@ -2014,6 +2014,7 @@ public class Graph { stack.push(new AndItem(null, prevExpr, rightSide)); } else if (prevExpr instanceof FalseItem) { isIf = false; + leftSide = leftSide.invert(null); stack.push(new AndItem(null, leftSide, rightSide)); } else if (prevExpr instanceof TrueItem) { isIf = false;