Changeset 41435 in webkit


Ignore:
Timestamp:
Mar 4, 2009 2:58:23 PM (15 years ago)
Author:
eric@webkit.org
Message:

Reviewed by Adam Roben.

Add an ASSERT to better demonstrate the cause of the crash in
https://bugs.webkit.org/show_bug.cgi?id=23736

  • loader/DocLoader.cpp: (WebCore::DocLoader::~DocLoader):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r41434 r41435  
     12009-03-04  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Roben.
     4
     5        Add an ASSERT to better demonstrate the cause of the crash in
     6        https://bugs.webkit.org/show_bug.cgi?id=23736
     7
     8        * loader/DocLoader.cpp:
     9        (WebCore::DocLoader::~DocLoader):
     10
    1112009-03-04  David Levin  <levin@chromium.org>
    212
  • trunk/WebCore/loader/DocLoader.cpp

    r41265 r41435  
    6666        it->second->setDocLoader(0);
    6767    m_cache->removeDocLoader(this);
     68
     69    // Make sure no requests still point to this DocLoader
     70    ASSERT(m_requestCount == 0);
    6871}
    6972
Note: See TracChangeset for help on using the changeset viewer.