From 5ba866a5c8dfedb2efd54ae371090b9a05cedd1a Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Mon, 22 Jul 2019 09:37:20 +0200 Subject: [PATCH] tun: windows: close event handle on shutdown --- tun/tun_windows.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tun/tun_windows.go b/tun/tun_windows.go index 6a84394..01c5644 100644 --- a/tun/tun_windows.go +++ b/tun/tun_windows.go @@ -171,6 +171,7 @@ func (tun *NativeTun) Close() error { if tun.wt != nil { _, err = tun.wt.DeleteInterface() } + close(tun.events) return err }