Fix buffer on non-linux-amd64 platforms maybe

This commit is contained in:
世界 2022-05-14 15:16:52 +08:00
parent da424ddd3f
commit f17d3036cd
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 28 additions and 1 deletions

27
common/buf/ptr.go Normal file
View file

@ -0,0 +1,27 @@
package buf
import (
"os"
"runtime"
_ "unsafe"
)
//go:linkname parsedebugvars runtime.parsedebugvars
func parsedebugvars()
//noinspection GoBoolExpressions
func init() {
if runtime.GOOS != "linux" || runtime.GOARCH != "amd64" {
disableInvalidPtrCheck()
}
}
func disableInvalidPtrCheck() {
debug := os.Getenv("GODEBUG")
if debug == "" {
os.Setenv("GODEBUG", "invalidptr=0")
} else {
os.Setenv("GODEBUG", "invalidptr=0,"+debug)
}
parsedebugvars()
}

0
common/buf/stub.s Normal file
View file

View file

@ -73,7 +73,7 @@ func Copy(dst io.Writer, src io.Reader) (n int64, err error) {
defer runtime.KeepAlive(_buffer)
buffer := common.Dup(_buffer)
for {
buffer.FullReset()
buffer.Reset()
_, err = buffer.ReadFrom(src)
if err != nil {
break