| commit | 2497251e6dbbdf07b1ff72fa828c3ec8afe04881 | [log] [tgz] | 
|---|---|---|
| author | Jeff Cohen <jeffc@jolt-lang.org> | Wed Jul 13 02:58:04 2005 +0000 | 
| committer | Jeff Cohen <jeffc@jolt-lang.org> | Wed Jul 13 02:58:04 2005 +0000 | 
| tree | 26d5fc03cdfded6823d751341c2682606a4e80c3 | |
| parent | b639f1461e77904ff210217af2aee327cc7063ea [diff] | 
Note to self: don't introduce memory leaks. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22422 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/System/Win32/Mutex.inc b/lib/System/Win32/Mutex.inc index 439ce1a..0a4bc4b 100644 --- a/lib/System/Win32/Mutex.inc +++ b/lib/System/Win32/Mutex.inc
@@ -31,6 +31,7 @@ Mutex::~Mutex() { DeleteCriticalSection((LPCRITICAL_SECTION)data_); + delete (LPCRITICAL_SECTION)data_; data_ = 0; }