summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/jfuzz/jfuzz.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/jfuzz/jfuzz.cc b/tools/jfuzz/jfuzz.cc
index b8a646d8fb..cda48f7207 100644
--- a/tools/jfuzz/jfuzz.cc
+++ b/tools/jfuzz/jfuzz.cc
@@ -954,7 +954,8 @@ class JFuzz {
// finally block always follows after try and catch
// block. Code may only follow if the finally block permits
// and either the try or catch block allows code to follow.
- mayFollow = (mayFollow | emitCatch()) & emitFinally();
+ mayFollow = (mayFollow | emitCatch());
+ mayFollow &= emitFinally();
break;
}
fputc('\n', out_);