From 76d5902ffab2452e980891c220eec0d051ed560e Mon Sep 17 00:00:00 2001 From: Gregor Wagner Date: Mon, 15 Sep 2014 22:09:10 +0200 Subject: [PATCH] Bug 1067552 - Assertion in RuntimeService::ShutdownIdleThreads. r=bent --- dom/workers/RuntimeService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/workers/RuntimeService.cpp b/dom/workers/RuntimeService.cpp index e2eabc7c53ee..b4b59e12ec1e 100644 --- a/dom/workers/RuntimeService.cpp +++ b/dom/workers/RuntimeService.cpp @@ -1691,7 +1691,7 @@ RuntimeService::ShutdownIdleThreads(nsITimer* aTimer, void* /* aClosure */) } } - NS_ASSERTION(nextExpiration.IsNull() || !expiredThreads.IsEmpty(), + NS_ASSERTION(!nextExpiration.IsNull() || !expiredThreads.IsEmpty(), "Should have a new time or there should be some threads to shut " "down");