From 857e535520e81ac550fe83b5de190d1255ddbc4b Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Tue, 22 Mar 2011 04:33:13 +0000 Subject: Properly initialize all fields in CrashReporterCleanupContext. This caused the buildbot failure earlier. llvm-svn: 128071 --- llvm/lib/Support/CrashRecoveryContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Support') diff --git a/llvm/lib/Support/CrashRecoveryContext.cpp b/llvm/lib/Support/CrashRecoveryContext.cpp index 7c7b0e934d3..899c3890d78 100644 --- a/llvm/lib/Support/CrashRecoveryContext.cpp +++ b/llvm/lib/Support/CrashRecoveryContext.cpp @@ -70,7 +70,7 @@ CrashRecoveryContext::~CrashRecoveryContext() { CrashRecoveryContextCleanup *tmp = i; i = tmp->next; tmp->cleanupFired = true; - //tmp->recoverResources(); + tmp->recoverResources(); delete tmp; } tlIsRecoveringFromCrash.erase(); -- cgit v1.2.3