Changeset 92627 in webkit


Ignore:
Timestamp:
Aug 8, 2011 1:18:33 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Add detail to ASSERT message in IDBTransaction::enqueueEvent
https://bugs.webkit.org/show_bug.cgi?id=65735

I've hit this a few times but haven't been able to pin it down. The
extra detail could be helpful.

Patch by David Grogan <dgrogan@chromium.org> on 2011-08-08
Reviewed by Nate Chapin.

No new tests, just an error message.

  • storage/IDBTransaction.cpp:

(WebCore::IDBTransaction::enqueueEvent):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r92626 r92627  
     12011-08-08  David Grogan  <dgrogan@chromium.org>
     2
     3        Add detail to ASSERT message in IDBTransaction::enqueueEvent
     4        https://bugs.webkit.org/show_bug.cgi?id=65735
     5
     6        I've hit this a few times but haven't been able to pin it down.  The
     7        extra detail could be helpful.
     8
     9        Reviewed by Nate Chapin.
     10
     11        No new tests, just an error message.
     12
     13        * storage/IDBTransaction.cpp:
     14        (WebCore::IDBTransaction::enqueueEvent):
     15
    1162011-08-08  Sheriff Bot  <webkit.review.bot@gmail.com>
    217
  • trunk/Source/WebCore/storage/IDBTransaction.cpp

    r80055 r92627  
    183183void IDBTransaction::enqueueEvent(PassRefPtr<Event> event)
    184184{
    185     ASSERT(!m_finished);
     185    ASSERT_WITH_MESSAGE(!m_finished, "A finished transaction tried to enqueue an event of type %s.", event->type().string().utf8().data());
    186186    if (!scriptExecutionContext())
    187187        return;
Note: See TracChangeset for help on using the changeset viewer.