From 60136eb0b28717fb8e861c51f5a798c495960a06 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 17 Sep 2001 03:05:05 +0000 Subject: * dtable.h (not_open): Assure inline. * fhandler.h (operator []): Make const. * sync.cc (muto::~muto): Fix typo which stopped muto event handle from ever being closed. --- winsup/cygwin/sync.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/sync.cc') diff --git a/winsup/cygwin/sync.cc b/winsup/cygwin/sync.cc index 78df35475..743ee02e7 100644 --- a/winsup/cygwin/sync.cc +++ b/winsup/cygwin/sync.cc @@ -47,7 +47,7 @@ muto::~muto () release (); HANDLE h = bruteforce; - h = NULL; + bruteforce = NULL; /* Just need to close the event handle */ if (h) CloseHandle (h); -- cgit v1.2.3