We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce the issue:
Run the saved user.wasm file with vmir:
user.wasm
vmir
$ vmir user.wasm Parser error: src/vmir_wasm_parser.c:167 : String length too long
The text was updated successfully, but these errors were encountered:
Problem is the wasm_parse_section_import_decl() function which doesn't handle imported tables.
wasm_parse_section_import_decl()
https://github.com/andoma/vmir/blob/master/src/vmir_wasm_parser.c#L275
Also it shouldn't just silently ignore kinds it can't import :-(
Sorry, something went wrong.
wasm: Correctly bail out on kind/types we don't support
8fc7027
Related to #11
This commit 8fc7027 doesn't really fix anything. Just pinpoints the actual error.
No branches or pull requests
Steps to reproduce the issue:
Run the saved
user.wasm
file withvmir
:The text was updated successfully, but these errors were encountered: