neilg       2003/05/27 09:14:59

  Modified:    c/src/xercesc/dom/deprecated AttrImpl.cpp
  Log:
  fix typo that could have been impacting correct operation of reference counting.  
Thanks to Michael Glavassevich for pointing this out.
  
  Revision  Changes    Path
  1.8       +3 -3      xml-xerces/c/src/xercesc/dom/deprecated/AttrImpl.cpp
  
  Index: AttrImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/deprecated/AttrImpl.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- AttrImpl.cpp      27 May 2003 03:51:07 -0000      1.7
  +++ AttrImpl.cpp      27 May 2003 16:14:58 -0000      1.8
  @@ -132,7 +132,7 @@
           {
               if(value.str != null)
               {
  -                *(value.str) == null;
  +                *(value.str) = null;
                   delete value.str;
                   value.str = null;
               }
  @@ -161,7 +161,7 @@
           // DOMString* and setting the value field to null
           if(value.str != null) 
           {
  -            *(value.str) == null;
  +            *(value.str) = null;
               delete value.str;
               value.str = null;
           }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to