Changeset 19107 in webkit


Ignore:
Timestamp:
Jan 24, 2007 10:07:42 PM (17 years ago)
Author:
darin
Message:

Reviewed by Oliver.

  • fix crash seen in layout tests
  • DumpRenderTree/EventSendingController.m: (-[EventSendingController dealloc]): Add back the line of code that sets savedMouseEvents to nil. I thought it was a field of the EventSendingController, but it's actually a global.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r19101 r19107  
     12007-01-24  Darin Adler  <darin@apple.com>
     2
     3        Reviewed by Oliver.
     4
     5        - fix crash seen in layout tests
     6
     7        * DumpRenderTree/EventSendingController.m: (-[EventSendingController dealloc]):
     8        Add back the line of code that sets savedMouseEvents to nil. I thought it was
     9        a field of the EventSendingController, but it's actually a global.
     10
    1112007-01-24  Darin Adler  <darin@apple.com>
    212
  • trunk/WebKitTools/DumpRenderTree/EventSendingController.m

    r19101 r19107  
    148148{
    149149    [savedMouseEvents release];
     150    savedMouseEvents = nil;
    150151    [super dealloc];
    151152}
Note: See TracChangeset for help on using the changeset viewer.