You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reader: fix fill when implementation writes to reader directly
`r.end += stream` is the same as `r.end = r.end + stream`, which causes
`r.end` to be analyzed before stream is called and that value is added
to. However, the implementation is allowed to write directly to `r` (for
example, inflate does this to keep a window) and update `r.end`
independently, causing the outdated value to be added to.
0 commit comments