From f01f30f68feacc70b6cb4367301f885a8407210b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kim=20Nguy=E1=BB=85n?= Date: Fri, 12 Oct 2012 20:52:47 +0200 Subject: [PATCH] Fixes the printing of empty attributes ( ). --- xml-tree.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/xml-tree.cpp b/xml-tree.cpp index d051212..d31c1ce 100644 --- a/xml-tree.cpp +++ b/xml-tree.cpp @@ -559,6 +559,7 @@ void xml_tree::print(xml_tree::node_t x, int fd, bool no_text) uputs((const char*) &(get_tag_name_by_ref(tag(n))[3]), fd); n++; uputs("=\"", fd); + current_text += (current_text[0] == 1); read = uprintf((const char*) current_text, fd); current_text += read + 1; uputc('"', fd); -- 2.17.1