diff options
Diffstat (limited to 'tun/wintun')
-rw-r--r-- | tun/wintun/namespace_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tun/wintun/namespace_windows.go b/tun/wintun/namespace_windows.go index 21791ef..01fff91 100644 --- a/tun/wintun/namespace_windows.go +++ b/tun/wintun/namespace_windows.go @@ -91,7 +91,7 @@ func (pool Pool) takeNameMutex() (windows.Handle, error) { windows.CloseHandle(mutex) return 0, fmt.Errorf("Error waiting on name mutex: %v", err) } - if event != windows.WAIT_OBJECT_0 { + if event != windows.WAIT_OBJECT_0 && event != windows.WAIT_ABANDONED { windows.CloseHandle(mutex) return 0, errors.New("Error with event trigger of name mutex") } |