diff options
| author | Hans Josephsen <[email protected]> | 2024-09-22 12:30:38 +0200 |
|---|---|---|
| committer | Hans Josephsen <[email protected]> | 2024-09-22 12:40:46 +0200 |
| commit | e2d2b0f36281326772678f0e903675927faaaddb (patch) | |
| tree | c24a6d41cc4ae263711a118fe8074506106ae8ae /.gitignore | |
| parent | 233905e18cf1446ebba898185882e5fc002a9f20 (diff) | |
Currently the return value of `write` is broken, it never returns the
previous frame even when present.
This happens because a slice of length 64 is always passed to Frame::new
from within the `abort_pending_mailbox` function, causing `Frame::new`
to return None.
The fix is to take a subslice of length `data_length`.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 1c221e876..a0b5d6a70 100644 --- a/.gitignore +++ b/.gitignore | |||
| @@ -5,3 +5,4 @@ Cargo.lock | |||
| 5 | third_party | 5 | third_party |
| 6 | /Cargo.toml | 6 | /Cargo.toml |
| 7 | out/ | 7 | out/ |
| 8 | .zed | ||
