[webkit-changes] cvs commit: WebCore ChangeLog

Darin darin at opensource.apple.com
Sun Sep 4 02:55:09 PDT 2005


darin       05/09/04 02:55:09

  Modified:    khtml/xml dom_elementimpl.cpp dom_nodeimpl.cpp
               .        ChangeLog
  Log:
          - temporarily disable LEAKS messages that are giving too many false positives
            we'll turn these back on again once we get them to really mean something.
  
          * khtml/xml/dom_elementimpl.cpp: (ElementImplCounter::~ElementImplCounter):
          Commented out the code to fprintf.
          * khtml/xml/dom_nodeimpl.cpp: (DOM::NodeImplCounter::~NodeImplCounter): Ditto.
  
  Revision  Changes    Path
  1.79      +1 -1      WebCore/khtml/xml/dom_elementimpl.cpp
  
  Index: dom_elementimpl.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/xml/dom_elementimpl.cpp,v
  retrieving revision 1.78
  retrieving revision 1.79
  diff -u -r1.78 -r1.79
  --- dom_elementimpl.cpp	31 Aug 2005 09:46:52 -0000	1.78
  +++ dom_elementimpl.cpp	4 Sep 2005 09:55:07 -0000	1.79
  @@ -239,7 +239,7 @@
   struct ElementImplCounter 
   { 
       static int count; 
  -    ~ElementImplCounter() { if (count != 0) fprintf(stderr, "LEAK: %d ElementImpl\n", count); } 
  +    ~ElementImplCounter() { /* if (count != 0) fprintf(stderr, "LEAK: %d ElementImpl\n", count); */ } 
   };
   int ElementImplCounter::count;
   static ElementImplCounter elementImplCounter;
  
  
  
  1.184     +1 -1      WebCore/khtml/xml/dom_nodeimpl.cpp
  
  Index: dom_nodeimpl.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/xml/dom_nodeimpl.cpp,v
  retrieving revision 1.183
  retrieving revision 1.184
  diff -u -r1.183 -r1.184
  --- dom_nodeimpl.cpp	3 Sep 2005 23:10:01 -0000	1.183
  +++ dom_nodeimpl.cpp	4 Sep 2005 09:55:07 -0000	1.184
  @@ -96,7 +96,7 @@
   #ifndef NDEBUG
   struct NodeImplCounter { 
       static int count; 
  -    ~NodeImplCounter() { if (count != 0) fprintf(stderr, "LEAK: %d NodeImpl\n", count); } 
  +    ~NodeImplCounter() { /* if (count != 0) fprintf(stderr, "LEAK: %d NodeImpl\n", count); */ }
   };
   int NodeImplCounter::count = 0;
   static NodeImplCounter nodeImplCounter;
  
  
  
  1.88      +9 -0      WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.87
  retrieving revision 1.88
  diff -u -r1.87 -r1.88
  --- ChangeLog	4 Sep 2005 09:22:41 -0000	1.87
  +++ ChangeLog	4 Sep 2005 09:55:08 -0000	1.88
  @@ -1,3 +1,12 @@
  +2005-09-04  Darin Adler  <darin at apple.com>
  +
  +        - temporarily disable LEAKS messages that are giving too many false positives
  +          we'll turn these back on again once we get them to really mean something.
  +
  +        * khtml/xml/dom_elementimpl.cpp: (ElementImplCounter::~ElementImplCounter):
  +        Commented out the code to fprintf.
  +        * khtml/xml/dom_nodeimpl.cpp: (DOM::NodeImplCounter::~NodeImplCounter): Ditto.
  +
   2005-09-04  Eric Seidel  <eseidel at apple.com>
   
           No review needed, only affects SVG, removing unused files.
  
  
  



More information about the webkit-changes mailing list