mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 13:27:39 +03:00
27 lines
467 B
Go
27 lines
467 B
Go
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()
|
|
}
|