projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33966cf
)
PR21202: Memory leak in Windows RWMutexImpl when using SRWLOCK
author
David Blaikie
<dblaikie@gmail.com>
Tue, 21 Oct 2014 00:34:39 +0000
(
00:34
+0000)
committer
David Blaikie
<dblaikie@gmail.com>
Tue, 21 Oct 2014 00:34:39 +0000
(
00:34
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220251
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Support/Windows/RWMutex.inc
patch
|
blob
|
history
diff --git
a/lib/Support/Windows/RWMutex.inc
b/lib/Support/Windows/RWMutex.inc
index
00d0e93
..
2d1d25f
100644
(file)
--- a/
lib/Support/Windows/RWMutex.inc
+++ b/
lib/Support/Windows/RWMutex.inc
@@
-84,12
+84,10
@@
RWMutexImpl::RWMutexImpl() {
}
RWMutexImpl::~RWMutexImpl() {
- if (sHasSRW) {
- // Nothing to do in the case of slim reader/writers
- } else {
+ if (!sHasSRW)
DeleteCriticalSection(static_cast<LPCRITICAL_SECTION>(data_));
- free(data_);
- }
+ // Nothing to do in the case of slim reader/writers except free the memory.
+ free(data_);
}
bool RWMutexImpl::reader_acquire() {