diff options
author | Paweł Bylica <chfast@gmail.com> | 2020-07-30 21:48:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-30 12:48:59 -0700 |
commit | dfb652a62ba36409d00ca96c730d39a699b898a5 (patch) | |
tree | 5fe587ff7237d4f045d5530778355b3d003b1e33 /src | |
parent | 5390bb0c51023aef254d9a637d84b79bef9c03db (diff) | |
download | wabt-dfb652a62ba36409d00ca96c730d39a699b898a5.tar.gz wabt-dfb652a62ba36409d00ca96c730d39a699b898a5.tar.bz2 wabt-dfb652a62ba36409d00ca96c730d39a699b898a5.zip |
Detect malformed import kind in binary reader (#1504)
Diffstat (limited to 'src')
-rw-r--r-- | src/binary-reader.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/binary-reader.cc b/src/binary-reader.cc index 7f195356..217253f5 100644 --- a/src/binary-reader.cc +++ b/src/binary-reader.cc @@ -2086,6 +2086,10 @@ Result BinaryReader::ReadImportSection(Offset section_size) { num_event_imports_++; break; } + + default: + PrintError("malformed import kind: %d", kind); + return Result::Error; } } |