diff options
author | Thomas Lively <tlively@google.com> | 2024-04-24 16:59:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-24 23:59:26 +0000 |
commit | aa931628d73a7ca69305760c161654aee8c20fe2 (patch) | |
tree | d46b277031858a564fa4e6ca3c0dca845d76dded /src/wasm/wasm-io.cpp | |
parent | 403568091b42c6bfe38e46d73d8d10cd4c0747e9 (diff) | |
download | binaryen-aa931628d73a7ca69305760c161654aee8c20fe2.tar.gz binaryen-aa931628d73a7ca69305760c161654aee8c20fe2.tar.bz2 binaryen-aa931628d73a7ca69305760c161654aee8c20fe2.zip |
Do not add an extra null character when reading files (#6538)
The new wat parser currently considers itself to be at the end of the file
whenever it cannot lex another token. This is not quite right, but fixing it
causes parser errors because of the extra null character we were appending to
files when we read them. This null character is not useful since we can already
read files as `std::string`, which always has an implicit null character, so
remove it. Clean up some users of `read_file` while we're at it.
Diffstat (limited to 'src/wasm/wasm-io.cpp')
-rw-r--r-- | src/wasm/wasm-io.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wasm/wasm-io.cpp b/src/wasm/wasm-io.cpp index 37d28ca4b..df1cc19f4 100644 --- a/src/wasm/wasm-io.cpp +++ b/src/wasm/wasm-io.cpp @@ -39,8 +39,7 @@ bool useNewWATParser = false; static void readTextData(std::string& input, Module& wasm, IRProfile profile) { if (useNewWATParser) { - std::string_view in(input.c_str()); - if (auto parsed = WATParser::parseModule(wasm, in); + if (auto parsed = WATParser::parseModule(wasm, input); auto err = parsed.getErr()) { Fatal() << err->msg; } |