Browse Source

WireGuard outbound: Fix close closed (#5054)

Fixes https://github.com/XTLS/Xray-core/issues/5053
风扇滑翔翼 9 months ago
parent
commit
5fa5f3fbb9
1 changed files with 2 additions and 1 deletions
  1. 2 1
      proxy/wireguard/client.go

+ 2 - 1
proxy/wireguard/client.go

@@ -129,7 +129,8 @@ func (h *Handler) processWireGuard(ctx context.Context, dialer internet.Dialer)
 	}
 	defer func() {
 		if err != nil {
-			_ = h.bind.Close()
+			h.bind.Close()
+			h.bind = nil
 		}
 	}()