WireGuard outbound: Fix close closed (#5054)

Fixes https://github.com/XTLS/Xray-core/issues/5053
This commit is contained in:
风扇滑翔翼
2025-08-27 17:33:09 +08:00
committed by GitHub
parent 2ee372e758
commit 5fa5f3fbb9

View File

@@ -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
}
}()