diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-03-22 04:33:13 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-03-22 04:33:13 +0000 |
commit | 857e535520e81ac550fe83b5de190d1255ddbc4b (patch) | |
tree | f74962c4040537153eba77593b3e8af97df8160f /llvm/lib/Support/CrashRecoveryContext.cpp | |
parent | 576d8834fe41bf73802832e7ac204b98455bfe25 (diff) | |
download | bcm5719-llvm-857e535520e81ac550fe83b5de190d1255ddbc4b.tar.gz bcm5719-llvm-857e535520e81ac550fe83b5de190d1255ddbc4b.zip |
Properly initialize all fields in CrashReporterCleanupContext. This caused the buildbot failure earlier.
llvm-svn: 128071
Diffstat (limited to 'llvm/lib/Support/CrashRecoveryContext.cpp')
-rw-r--r-- | llvm/lib/Support/CrashRecoveryContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |