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

Adele adele at opensource.apple.com
Fri Dec 16 13:30:36 PST 2005


adele       05/12/16 13:30:36

  Modified:    .        ChangeLog
               khtml    khtml_part.cpp
  Log:
          Reviewed by Maciej.
  
          Fix for <rdar://problem/4381546> Safari crash at www.dallascowboys.com in KWQListIteratorImpl::current()
  
          * khtml/khtml_part.cpp:
          (KHTMLPart::slotFinishedParsing): ref the part before calling checkCompleted.
  
  Revision  Changes    Path
  1.552     +9 -0      WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.551
  retrieving revision 1.552
  diff -u -r1.551 -r1.552
  --- ChangeLog	16 Dec 2005 21:21:25 -0000	1.551
  +++ ChangeLog	16 Dec 2005 21:30:29 -0000	1.552
  @@ -1,3 +1,12 @@
  +2005-12-16  Adele Peterson  <adele at apple.com>
  +
  +        Reviewed by Maciej.
  +
  +        Fix for <rdar://problem/4381546> Safari crash at www.dallascowboys.com in KWQListIteratorImpl::current()
  +
  +        * khtml/khtml_part.cpp:
  +        (KHTMLPart::slotFinishedParsing): ref the part before calling checkCompleted.
  +
   2005-12-16  Vicki Murley  <vicki at apple.com>
   
           Reviewed by Tim O.
  
  
  
  1.369     +2 -1      WebCore/khtml/khtml_part.cpp
  
  Index: khtml_part.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/khtml_part.cpp,v
  retrieving revision 1.368
  retrieving revision 1.369
  diff -u -r1.368 -r1.369
  --- khtml_part.cpp	16 Dec 2005 08:08:11 -0000	1.368
  +++ khtml_part.cpp	16 Dec 2005 21:30:35 -0000	1.369
  @@ -1071,7 +1071,8 @@
   
     if (!d->m_view)
       return; // We are probably being destructed.
  -    
  +
  +  RefPtr<KHTMLPart> protector(this);
     checkCompleted();
   
     if (!d->m_view)
  
  
  



More information about the webkit-changes mailing list