Commit 8cf55851 authored by Bob Clary's avatar Bob Clary
Browse files

Bug 1295138 - Change NS_ASSERTION(false, "Existing entry in StartupCache.") to...

Bug 1295138 - Change NS_ASSERTION(false, "Existing entry in StartupCache.") to a NS_WARNING, r=nfroyd
parent 9895a88a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
  }