[webkit-changes] cvs commit: SVGSupport/ksvg2/svg SVGAnimationElementImpl.cpp

Eric eseidel at opensource.apple.com
Fri Oct 14 13:20:55 PDT 2005


eseidel     05/10/14 13:20:54

  Modified:    .        ChangeLog
               ksvg2/svg SVGAnimationElementImpl.cpp
  Log:
  Bug #: 5336
  Submitted by: Julien Palmas <julien.palmas at mac.com>
  Reviewed by: eseidel
          Fixed crash when animating unsupported elements.
          http://bugzilla.opendarwin.org/show_bug.cgi?id=5336
  
          * ksvg2/svg/SVGAnimationElementImpl.cpp:
          (SVGAnimationElementImpl::targetElement):
  
  Revision  Changes    Path
  1.242     +11 -1     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.241
  retrieving revision 1.242
  diff -u -r1.241 -r1.242
  --- ChangeLog	13 Oct 2005 22:45:48 -0000	1.241
  +++ ChangeLog	14 Oct 2005 20:20:50 -0000	1.242
  @@ -1,3 +1,13 @@
  +2005-10-14  Julien Palmas <julien.palmas at mac.com>
  +
  +        Reviewed by eseidel.
  +
  +        Fixed crash when animating unsupported elements.
  +        http://bugzilla.opendarwin.org/show_bug.cgi?id=5336
  +
  +        * ksvg2/svg/SVGAnimationElementImpl.cpp:
  +        (SVGAnimationElementImpl::targetElement):
  +
   2005-10-13  Justin Garcia  <justin.garcia at apple.com>
   
           Reviewed by hyatt
  @@ -186,7 +196,7 @@
           * ksvg2/svg/SVGUseElementImpl.cpp:
           (SVGUseElementImpl::close):
   
  -2005-10-11  Julien Palmas <julien.palmas at mac.com>>
  +2005-10-11  Julien Palmas <julien.palmas at mac.com>
   
           Reviewed by eseidel.
   
  
  
  
  1.9       +1 -2      SVGSupport/ksvg2/svg/SVGAnimationElementImpl.cpp
  
  Index: SVGAnimationElementImpl.cpp
  ===================================================================
  RCS file: /cvs/root/SVGSupport/ksvg2/svg/SVGAnimationElementImpl.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- SVGAnimationElementImpl.cpp	5 Oct 2005 05:35:17 -0000	1.8
  +++ SVGAnimationElementImpl.cpp	14 Oct 2005 20:20:54 -0000	1.9
  @@ -103,8 +103,7 @@
                   else
                       break;
               }
  -            
  -            m_targetElement = static_cast<SVGElementImpl *>(target);
  +            m_targetElement = svg_dynamic_cast(target);
           }
       }
                           
  
  
  



More information about the webkit-changes mailing list