Fix a bug in the detection of end-of-file.#73
Merged
sunfishcode merged 1 commit intomasterfrom Sep 17, 2015
Merged
Conversation
input returns 0 when it reaches the end of the file; other values may indicate merely a short read.
Member
|
Oops, thanks for spotting. LGTM |
sunfishcode
added a commit
that referenced
this pull request
Sep 17, 2015
Fix a bug in the detection of end-of-file.
eqrion
pushed a commit
to eqrion/wasm-spec
that referenced
this pull request
Jul 18, 2019
The data count section has a count that must match the number of data segments. If the data count section isn't present, then `memory.init` and `data.drop` cannot be used. Fixes issue WebAssembly#73.
alexcrichton
pushed a commit
to alexcrichton/spec
that referenced
this pull request
Nov 18, 2019
A centralized location for seeing how up-to-date various implementations are.
awendland
pushed a commit
to awendland/webassembly-spec-abstypes
that referenced
this pull request
Mar 26, 2020
dhil
pushed a commit
to dhil/webassembly-spec
that referenced
this pull request
Aug 30, 2024
As a matter of style and longevity, I believe it is better to craft the explainer as though the feature already exists.
rossberg
pushed a commit
that referenced
this pull request
Sep 4, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
input returns 0 when it reaches the end of the file; other values may
indicate merely a short read. This fixes #72.