From 44ca05b565fec40cfc0b80c6f715aa66000110e8 Mon Sep 17 00:00:00 2001 From: x500x <1033652712@qq.com> Date: Sat, 3 Jan 2026 13:04:35 +0800 Subject: [PATCH] =?UTF-8?q?bugfix:=20=E4=BF=AE=E5=A4=8D=E4=B8=8D=E5=AE=8C?= =?UTF-8?q?=E5=85=A8=E9=87=8A=E6=94=BE=E5=8F=A5=E6=9F=84=E7=9A=84=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ProcessDrv/tun/WinDivert/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProcessDrv/tun/WinDivert/main.go b/src/ProcessDrv/tun/WinDivert/main.go index 7144ef2..ebca08a 100644 --- a/src/ProcessDrv/tun/WinDivert/main.go +++ b/src/ProcessDrv/tun/WinDivert/main.go @@ -34,7 +34,7 @@ func (d *Divert) IsRunning() bool { func (d *Divert) Close() { d.handleMutex.Lock() if d.handle != nil { - _ = d.handle2.Close() + _ = d.handle.Close() } if d.handle2 != nil { _ = d.handle2.Close()