summarylogtreecommitdiffstats
path: root/gtest-1.8.1-null-pointer.patch
diff options
context:
space:
mode:
Diffstat (limited to 'gtest-1.8.1-null-pointer.patch')
-rw-r--r--gtest-1.8.1-null-pointer.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/gtest-1.8.1-null-pointer.patch b/gtest-1.8.1-null-pointer.patch
deleted file mode 100644
index d062baca40c8..000000000000
--- a/gtest-1.8.1-null-pointer.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/googletest/src/gtest.cc b/googletest/src/gtest.cc
-index 96b07c6..4af3e5a 100644
---- a/googletest/src/gtest.cc
-+++ b/googletest/src/gtest.cc
-@@ -2693,10 +2693,12 @@ void TestInfo::Run() {
- test->Run();
- }
-
-+ if (test != NULL) {
- // Deletes the test object.
- impl->os_stack_trace_getter()->UponLeavingGTest();
- internal::HandleExceptionsInMethodIfSupported(
- test, &Test::DeleteSelf_, "the test fixture's destructor");
-+ }
-
- result_.set_elapsed_time(internal::GetTimeInMillis() - start);
-