mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
Fix buffer on non-linux-amd64 platforms maybe
This commit is contained in:
parent
da424ddd3f
commit
f17d3036cd
3 changed files with 28 additions and 1 deletions
27
common/buf/ptr.go
Normal file
27
common/buf/ptr.go
Normal 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
0
common/buf/stub.s
Normal 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue