diff options
Diffstat (limited to 'lib/Support/CrashRecoveryContext.cpp')
-rw-r--r-- | lib/Support/CrashRecoveryContext.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Support/CrashRecoveryContext.cpp b/lib/Support/CrashRecoveryContext.cpp index d4e21a3a82..e558662611 100644 --- a/lib/Support/CrashRecoveryContext.cpp +++ b/lib/Support/CrashRecoveryContext.cpp @@ -65,6 +65,7 @@ CrashRecoveryContext::~CrashRecoveryContext() { while (i) { CrashRecoveryContextCleanup *tmp = i; i = tmp->next; + tmp->cleanupFired = true; tmp->recoverResources(); delete tmp; } |