diff src/protocols/jabber/message.c @ 7642:9008b5be4275

[gaim-migrate @ 8285] let the xmlnode stuff handle embedded NULLs (i'll need this later) committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Wed, 26 Nov 2003 17:28:13 +0000
parents 2df4d470c12a
children d9a7774b5b3c
line wrap: on
line diff
--- a/src/protocols/jabber/message.c	Wed Nov 26 16:33:40 2003 +0000
+++ b/src/protocols/jabber/message.c	Wed Nov 26 17:28:13 2003 +0000
@@ -278,7 +278,7 @@
 				jm->body = xmlnode_get_data(child);
 		} else if(!strcmp(child->name, "html")) {
 			if(!jm->xhtml)
-				jm->xhtml = xmlnode_to_str(child);
+				jm->xhtml = xmlnode_to_str(child, NULL);
 		} else if(!strcmp(child->name, "error")) {
 			const char *code = xmlnode_get_attrib(child, "code");
 			char *code_txt = NULL;