From 3cfd25d5d45eb3d6f3748ff23a4536a397d17c81 Mon Sep 17 00:00:00 2001 From: PeiYong Zhang <peiyongz@apache.org> Date: Wed, 7 Aug 2002 18:10:19 +0000 Subject: [PATCH] Fix to Bug#11534: Wrong CDATA Terminator in DOMWriterImpl git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174096 13f79535-47bb-0310-9956-ffa450edef68 --- src/xercesc/dom/impl/DOMWriterImpl.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/xercesc/dom/impl/DOMWriterImpl.cpp b/src/xercesc/dom/impl/DOMWriterImpl.cpp index d8cd37187..5dc6a30e8 100644 --- a/src/xercesc/dom/impl/DOMWriterImpl.cpp +++ b/src/xercesc/dom/impl/DOMWriterImpl.cpp @@ -57,6 +57,9 @@ /* * $Id$ * $Log$ + * Revision 1.15 2002/08/07 18:10:19 peiyongz + * Fix to Bug#11534: Wrong CDATA Terminator in DOMWriterImpl + * * Revision 1.14 2002/07/22 23:24:01 tng * DOM L3: writeToString should use the fFormatter to do the transcoding * @@ -237,8 +240,8 @@ static const XMLCh gStartCDATA[] = //]]> static const XMLCh gEndCDATA[] = { - chCloseSquare, chCloseAngle, chCloseAngle, chNull // test only: ]>> -// chCloseSquare, chCloseSquare, chCloseAngle, chNull +// chCloseSquare, chCloseAngle, chCloseAngle, chNull // test only: ]>> + chCloseSquare, chCloseSquare, chCloseAngle, chNull }; //<!-- -- GitLab