Bug 1295138 - Change NS_ASSERTION(false, "Existing entry in StartupCache.") to a NS_WARNING, r=nfroyd

This commit is contained in:
Bob Clary 2016-08-15 08:08:49 -07:00
parent 9895a88a2a
commit 8cf5585105

View File

@ -355,7 +355,7 @@ StartupCache::PutBuffer(const char* id, const char* inbuf, uint32_t len)
CacheEntry* entry;
if (mTable.Get(idStr)) {
NS_ASSERTION(false, "Existing entry in StartupCache.");
NS_WARNING("Existing entry in StartupCache.");
// Double-caching is undesirable but not an error.
return NS_OK;
}