aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorvladlosev <vladlosev@8415998a-534a-0410-bf83-d39667b30386>2011-10-24 23:41:07 +0000
committervladlosev <vladlosev@8415998a-534a-0410-bf83-d39667b30386>2011-10-24 23:41:07 +0000
commit9bcb5f9146db42bc38b6bb744fb0cf518a0205be (patch)
tree25eaddb193823d54b9dce3878b0f32d2eba6739a /src
parent4d60a596b4135c5a7e21ef7b4fe24a5c90329e0f (diff)
downloadgoogletest-9bcb5f9146db42bc38b6bb744fb0cf518a0205be.tar.gz
googletest-9bcb5f9146db42bc38b6bb744fb0cf518a0205be.tar.bz2
googletest-9bcb5f9146db42bc38b6bb744fb0cf518a0205be.zip
Fixes a lock reentrancy when destroying a mock causes destruction of another mock (issue 79) (by Aaron Jacobs).
Diffstat (limited to 'src')
-rw-r--r--src/gmock-spec-builders.cc16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/gmock-spec-builders.cc b/src/gmock-spec-builders.cc
index 06299784..6599325d 100644
--- a/src/gmock-spec-builders.cc
+++ b/src/gmock-spec-builders.cc
@@ -480,7 +480,21 @@ bool UntypedFunctionMockerBase::VerifyAndClearExpectationsLocked()
untyped_expectation->line(), ss.str());
}
}
- untyped_expectations_.clear();
+
+ // Deleting our expectations may trigger other mock objects to be deleted, for
+ // example if an action contains a reference counted smart pointer to that
+ // mock object, and that is the last reference. So if we delete our
+ // expectations within the context of the global mutex we may deadlock when
+ // this method is called again. Instead, make a copy of the set of
+ // expectations to delete, clear our set within the mutex, and then clear the
+ // copied set outside of it.
+ UntypedExpectations expectations_to_delete;
+ untyped_expectations_.swap(expectations_to_delete);
+
+ g_gmock_mutex.Unlock();
+ expectations_to_delete.clear();
+ g_gmock_mutex.Lock();
+
return expectations_met;
}