Bug 1164100 P2 Fix defunct assertion in Cache API ActionRunnable. r=ehsan

This commit is contained in:
Ben Kelly 2015-05-13 13:35:34 -07:00
parent b053f626b5
commit 2552521ec3

View File

@ -464,7 +464,7 @@ public:
// mData may be nullptr
MOZ_ASSERT(mTarget);
MOZ_ASSERT(mAction);
MOZ_ASSERT(mQuotaInfo.mDir);
// mQuotaInfo.mDir may be nullptr if QuotaInitRunnable failed
MOZ_ASSERT(mInitiatingThread);
}