mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-22 08:31:30 +00:00
platform: Fix crash on android
This commit is contained in:
parent
1402bdab41
commit
c84c18f960
|
@ -4,6 +4,7 @@ package libbox
|
|||
|
||||
import (
|
||||
"os"
|
||||
"runtime"
|
||||
|
||||
"golang.org/x/sys/unix"
|
||||
)
|
||||
|
@ -18,6 +19,7 @@ func RedirectStderr(path string) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if runtime.GOOS != "android" {
|
||||
if sUserID > 0 {
|
||||
err = outputFile.Chown(sUserID, sGroupID)
|
||||
if err != nil {
|
||||
|
@ -26,6 +28,7 @@ func RedirectStderr(path string) error {
|
|||
return err
|
||||
}
|
||||
}
|
||||
}
|
||||
err = unix.Dup2(int(outputFile.Fd()), int(os.Stderr.Fd()))
|
||||
if err != nil {
|
||||
outputFile.Close()
|
||||
|
|
Loading…
Reference in a new issue