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
Go 1.17 changed the behavior of net.Buffers in golang/go#45163. This causes code at
easyjson/buffer/pool.go
Lines 171 to 180 in 11c9d7f
to not put buffers back to the pool. Argument to putBuf is nil because WriteTo sets all elements of the b.bufs slice to nil.
putBuf
nil
WriteTo
b.bufs
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Go 1.17 changed the behavior of net.Buffers in golang/go#45163. This causes code at
easyjson/buffer/pool.go
Lines 171 to 180 in 11c9d7f
to not put buffers back to the pool.
Argument to
putBuf
isnil
becauseWriteTo
sets all elements of theb.bufs
slice tonil
.The text was updated successfully, but these errors were encountered: