-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(server): Panic when last envelope item is empty (#894)
Trailing newlines can be omitted in envelopes. When the last envelope item was empty, the parsing code could yield two invalid results: - If an explicit length of `0` was specified, then the envelope was rejected with `UnexpectedEof`. - If implicit length was used, the parser would panic. This can both be solved by aligning the parse offset with the end of the buffer.
- Loading branch information
Showing
2 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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