dbertoni    00/07/02 12:09:10

  Modified:    c/src/XMLSupport FormatterToHTML.cpp
  Log:
  Fixed problem where call to cdata() would cause an infinite loop.
  
  Revision  Changes    Path
  1.19      +2 -2      xml-xalan/c/src/XMLSupport/FormatterToHTML.cpp
  
  Index: FormatterToHTML.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToHTML.cpp,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- FormatterToHTML.cpp       2000/05/24 19:25:33     1.18
  +++ FormatterToHTML.cpp       2000/07/02 19:09:09     1.19
  @@ -55,7 +55,7 @@
    * <http://www.apache.org/>.
    */
   /**
  - * $Id: FormatterToHTML.cpp,v 1.18 2000/05/24 19:25:33 dbertoni Exp $
  + * $Id: FormatterToHTML.cpp,v 1.19 2000/07/02 19:09:09 dbertoni Exp $
    * 
    * $State: Exp $
    * 
  @@ -716,7 +716,7 @@
        }
        else
        {
  -             cdata(ch, length);
  +             FormatterToXML::cdata(ch, length);
        }
   }
   
  
  
  

Reply via email to