diff options
Diffstat (limited to 'src/wast-parser.cc')
-rw-r--r-- | src/wast-parser.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wast-parser.cc b/src/wast-parser.cc index 236840ec..f950512f 100644 --- a/src/wast-parser.cc +++ b/src/wast-parser.cc @@ -874,7 +874,7 @@ bool WastParser::ParseElemExprOpt(ExprList* out_elem_expr) { } EXPECT(Rpar); } else { - if (ParseExpr(&exprs) != Result::Ok) { + if (!IsExpr(PeekPair()) || ParseExpr(&exprs) != Result::Ok) { return false; } } |