Changeset 42173 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Apr 2, 2009, 9:35:15 AM (16 years ago)
Author:
Darin Adler
Message:

2009-04-02 Darin Adler <Darin Adler>

Reviewed by Kevin Decker.

<rdar://problem/6744471> crash in GC due to uninitialized callFunction pointer

  • runtime/JSGlobalObject.h: (JSC::JSGlobalObject::JSGlobalObjectData::JSGlobalObjectData): Initialize callFunction as we do the other data members that are used in the mark function.
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r42167 r42173  
     12009-04-02  Darin Adler  <[email protected]>
     2
     3        Reviewed by Kevin Decker.
     4
     5        <rdar://problem/6744471> crash in GC due to uninitialized callFunction pointer
     6
     7        * runtime/JSGlobalObject.h:
     8        (JSC::JSGlobalObject::JSGlobalObjectData::JSGlobalObjectData): Initialize
     9        callFunction as we do the other data members that are used in the mark function.
     10
    1112009-04-02  Yael Aharon  <[email protected]>
    212
  • trunk/JavaScriptCore/runtime/JSGlobalObject.h

    r42065 r42173  
    6969                , URIErrorConstructor(0)
    7070                , evalFunction(0)
     71                , callFunction(0)
    7172                , objectPrototype(0)
    7273                , functionPrototype(0)
Note: See TracChangeset for help on using the changeset viewer.