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

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


thatcher    05/11/10 12:28:59

  Modified:    .        Tag: Safari-2-0-branch ChangeLog
               khtml/ecma Tag: Safari-2-0-branch kjs_window.cpp
  Log:
          Merged fix from TOT to Safari-2-0-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.1.2.44  +17 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.1.2.43
  retrieving revision 1.1.2.44
  diff -u -r1.1.2.43 -r1.1.2.44
  --- ChangeLog	10 Nov 2005 18:38:47 -0000	1.1.2.43
  +++ ChangeLog	10 Nov 2005 20:28:54 -0000	1.1.2.44
  @@ -2,6 +2,23 @@
   
           Merged fix from TOT to Safari-2-0-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-10  Timothy Hatcher  <timothy at apple.com>
  +
  +        Merged fix from TOT to Safari-2-0-branch
  +
       2005-10-03  Justin Garcia  <justin.garcia at apple.com>
      
           Reviewed by darin
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.146.8.12 +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.8.11
  retrieving revision 1.146.8.12
  diff -u -r1.146.8.11 -r1.146.8.12
  --- kjs_window.cpp	16 Sep 2005 02:34:11 -0000	1.146.8.11
  +++ kjs_window.cpp	10 Nov 2005 20:28:57 -0000	1.146.8.12
  @@ -329,6 +329,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