[webkit-changes] cvs commit: WebCore/khtml/ecma kjs_window.cpp

Timothy thatcher at opensource.apple.com
Thu Nov 10 12:28:16 PST 2005


thatcher    05/11/10 12:28:16

  Modified:    .        Tag: Safari-1-3-branch ChangeLog
               khtml/ecma Tag: Safari-1-3-branch kjs_window.cpp
  Log:
          Merged fix from TOT to Safari-1-3-branch
  
      2005-10-10  Geoffrey Garen  <ggaren at apple.com>
  
          - Fixed <rdar://problem/4245682> Regression: CrashTracer: 923 crashes
            in Safari at com.apple.WebCore: KJS::Window::clear + 132
  
          Reviewed by mjs.
  
          No test case because this crash isn't reliably reproducible.
  
          * khtml/ecma/kjs_window.cpp:
          (KJS::Window::Window): Initialize m_returnValueSlot to 0, so that we
          know not to write to it until it's explicitly set to a valid address.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.335.2.6 +17 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.335.2.5
  retrieving revision 1.335.2.6
  diff -u -r1.335.2.5 -r1.335.2.6
  --- ChangeLog	9 Nov 2005 23:00:24 -0000	1.335.2.5
  +++ ChangeLog	10 Nov 2005 20:28:10 -0000	1.335.2.6
  @@ -1,3 +1,20 @@
  +2005-11-10  Timothy Hatcher  <timothy at apple.com>
  +
  +        Merged fix from TOT to Safari-1-3-branch
  +
  +    2005-10-10  Geoffrey Garen  <ggaren at apple.com>
  +
  +        - Fixed <rdar://problem/4245682> Regression: CrashTracer: 923 crashes 
  +          in Safari at com.apple.WebCore: KJS::Window::clear + 132
  +
  +        Reviewed by mjs.
  +
  +        No test case because this crash isn't reliably reproducible.
  +
  +        * khtml/ecma/kjs_window.cpp:
  +        (KJS::Window::Window): Initialize m_returnValueSlot to 0, so that we
  +        know not to write to it until it's explicitly set to a valid address.
  +
   2005-11-09  Timothy Hatcher  <timothy at apple.com>
   
           Merged fix from TOT to Safari-1-3-branch
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.146.6.8 +1 -0      WebCore/khtml/ecma/kjs_window.cpp
  
  Index: kjs_window.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/ecma/kjs_window.cpp,v
  retrieving revision 1.146.6.7
  retrieving revision 1.146.6.8
  diff -u -r1.146.6.7 -r1.146.6.8
  --- kjs_window.cpp	13 Jul 2005 23:46:15 -0000	1.146.6.7
  +++ kjs_window.cpp	10 Nov 2005 20:28:14 -0000	1.146.6.8
  @@ -322,6 +322,7 @@
     , m_statusbar(0)
     , m_toolbar(0)
     , m_evt(0)
  +  , m_returnValueSlot(0)
   {
     winq = new WindowQObject(this);
     //kdDebug(6070) << "Window::Window this=" << this << " part=" << m_part << " " << m_part->name() << endl;
  
  
  



More information about the webkit-changes mailing list