Skip to content
New issue

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

? #1711

Open
wants to merge 9 commits into
base: staging
Choose a base branch
from
2 changes: 1 addition & 1 deletion core/sys/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (f *MemFile) WriteAt(p []byte, offset int64) (n int, err error) {
return len(p), nil
}

// InitBuffer initializes the buffer with a specific size
// InitBuffer initializes the buffer with a specific size?
func (f *MemFile) InitBuffer(size int) {
buff := common.MemPool.Get()
if cap(buff.B) < size {
Expand Down
Loading