mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-05 14:13:30 +03:00
fix: close mixed stack panic #1014
This commit is contained in:
parent
40f5c5b987
commit
b56e73a02a
1 changed files with 4 additions and 2 deletions
|
@ -261,15 +261,17 @@ func New(options LC.Tun, tunnel C.Tunnel, additions ...inbound.Addition) (l *Lis
|
|||
}
|
||||
}
|
||||
l.tunIf = tunIf
|
||||
l.tunStack, err = tun.NewStack(strings.ToLower(options.Stack.String()), stackOptions)
|
||||
|
||||
tunStack, err := tun.NewStack(strings.ToLower(options.Stack.String()), stackOptions)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
err = l.tunStack.Start()
|
||||
err = tunStack.Start()
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
l.tunStack = tunStack
|
||||
|
||||
//l.openAndroidHotspot(tunOptions)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue