|
From: <sv...@va...> - 2009-08-15 23:33:16
|
Author: sewardj
Date: 2009-08-16 00:33:04 +0100 (Sun, 16 Aug 2009)
New Revision: 10825
Log:
Followup to r10822: send the CDATA text to the XML channel, not the
text one. Duh.
Modified:
trunk/coregrind/m_errormgr.c
Modified: trunk/coregrind/m_errormgr.c
===================================================================
--- trunk/coregrind/m_errormgr.c 2009-08-15 23:26:12 UTC (rev 10824)
+++ trunk/coregrind/m_errormgr.c 2009-08-15 23:33:04 UTC (rev 10825)
@@ -415,7 +415,7 @@
// itself contains "]]>", as specified in Protocol 4.
VG_(printf_xml)(" <rawtext>\n");
VG_(printf_xml)("<![CDATA[\n");
- VG_(printf)("%s", (HChar*) VG_(indexXA)(text, 0) );
+ VG_(printf_xml)("%s", (HChar*) VG_(indexXA)(text, 0) );
VG_(printf_xml)("]]>\n");
VG_(printf_xml)(" </rawtext>\n");
VG_(printf_xml)(" </suppression>\n");
|