diff options
author | vladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925> | 2011-07-11 19:27:07 +0000 |
---|---|---|
committer | vladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925> | 2011-07-11 19:27:07 +0000 |
commit | c2922d4ed2ecff5ba889b2008dba45dbc39c9168 (patch) | |
tree | a9ba3a7322e918138fa7dc8332ac68c0a510421a | |
parent | 386da2037dc7b1d063ac43bf146889b1edcafe7e (diff) | |
download | googletest-c2922d4ed2ecff5ba889b2008dba45dbc39c9168.tar.gz googletest-c2922d4ed2ecff5ba889b2008dba45dbc39c9168.tar.bz2 googletest-c2922d4ed2ecff5ba889b2008dba45dbc39c9168.zip |
Fixes a resource leak in gtest-port_test (by Haruka Iwao).
-rw-r--r-- | test/gtest-port_test.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/gtest-port_test.cc b/test/gtest-port_test.cc index c83e005f..9ae78769 100644 --- a/test/gtest-port_test.cc +++ b/test/gtest-port_test.cc @@ -1037,6 +1037,7 @@ class AtomicCounterWithMutex { SleepMilliseconds(random_.Generate(30)); GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&memory_barrier_mutex)); + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_destroy(&memory_barrier_mutex)); } value_ = temp + 1; } |