Browse Source

2003-11-24 Atsushi Enomoto <[email protected]>

	* DTDValidatingReader.cs : Fixed ReadContent() which may result in
	  invalid additional Text node.

svn path=/trunk/mcs/; revision=20391
Atsushi Eno 22 years ago
parent
commit
0b5457bd50

+ 5 - 0
mcs/class/System.XML/System.Xml/ChangeLog

@@ -1,3 +1,8 @@
+2003-11-24  Atsushi Enomoto  <[email protected]>
+
+	* DTDValidatingReader.cs : Fixed ReadContent() which may result in 
+	  invalid additional Text node.
+
 2003-11-24  Atsushi Enomoto  <[email protected]>
 
 	* XmlTextWriter.cs : 

+ 1 - 0
mcs/class/System.XML/System.Xml/DTDValidatingReader.cs

@@ -526,6 +526,7 @@ namespace Mono.Xml
 				}
 				break;
 			}
+			constructingTextValue = null;
 			MoveToElement ();
 			return true;
 		}