Bug 1465739 - Don't crash when there are late writes in all coverage builds. r=froydnj

This commit is contained in:
Marco Castelluccio
2018-05-30 16:47:36 +02:00
parent b6ad2630be
commit c4b18e5191
+2 -2
View File
@@ -3765,11 +3765,11 @@ static void SetShutdownChecks() {
// too.
#ifdef DEBUG
#if defined(MOZ_CODE_COVERAGE) && defined(XP_WIN)
#if defined(MOZ_CODE_COVERAGE)
gShutdownChecks = SCM_NOTHING;
#else
gShutdownChecks = SCM_CRASH;
#endif // MOZ_CODE_COVERAGE && XP_WIN
#endif // MOZ_CODE_COVERAGE
#else
const char* releaseChannel = NS_STRINGIFY(MOZ_UPDATE_CHANNEL);
if (strcmp(releaseChannel, "nightly") == 0 ||