Changeset 17637 in webkit


Ignore:
Timestamp:
Nov 6, 2006 7:25:16 PM (17 years ago)
Author:
beidson
Message:

Reviewed by Sarge

<rdar://problem/4822911> - ASSERTION was a little overzealous.
Toned it down a bit.

  • xml/xmlhttprequest.cpp: (WebCore::XMLHttpRequest::didFinishLoading): Toned down assertion
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r17636 r17637  
     12006-11-06  Brady Eidson  <beidson@apple.com>
     2
     3        Reviewed by Sarge
     4
     5        <rdar://problem/4822911> - ASSERTION was a little overzealous. 
     6        Toned it down a bit.
     7
     8        * xml/xmlhttprequest.cpp:
     9        (WebCore::XMLHttpRequest::didFinishLoading):  Toned down assertion
     10
    1112006-11-06  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
    212
  • trunk/WebCore/xml/xmlhttprequest.cpp

    r17597 r17637  
    486486void XMLHttpRequest::didFinishLoading(ResourceHandle* loader)
    487487{
    488     ASSERT(loader == m_loader);
     488    ASSERT(m_aborted || loader == m_loader);
    489489
    490490    if (m_state < Sent)
Note: See TracChangeset for help on using the changeset viewer.