diff options
| author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-03-10 09:03:22 -0700 | 
|---|---|---|
| committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-03-10 09:03:22 -0700 | 
| commit | 604861e520d2d6579674a1c2bd5e59cb10f7ecd2 (patch) | |
| tree | 4deb62f1bae976c4373a4f9356fb3ce5f27dca34 /src | |
| parent | 23060d095447ca7c47a9c0698ec731197cebc80b (diff) | |
Escape ?> sequence in PI value during printing
This prevents malformed PI value from breaking the document structure.
Diffstat (limited to 'src')
| -rw-r--r-- | src/pugixml.cpp | 23 | 
1 files changed, 22 insertions, 1 deletions
| diff --git a/src/pugixml.cpp b/src/pugixml.cpp index 6c88d55..ce8a79f 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -3462,6 +3462,27 @@ PUGI__NS_BEGIN  		writer.write('-', '-', '>');  	} +	PUGI__FN void node_output_pi_value(xml_buffered_writer& writer, const char_t* s) +	{ +		while (*s) +		{ +			const char_t* prev = s; + +			// look for ?> sequence - we can't output it since ?> terminates PI +			while (*s && !(s[0] == '?' && s[1] == '>')) ++s; + +			writer.write_buffer(prev, static_cast<size_t>(s - prev)); + +			if (*s) +			{ +				assert(s[0] == '?' && s[1] == '>'); + +				writer.write('?', ' ', '>'); +				s += 2; +			} +		} +	} +  	PUGI__FN void node_output_attributes(xml_buffered_writer& writer, xml_node_struct* node, unsigned int flags)  	{  		const char_t* default_name = PUGIXML_TEXT(":anonymous"); @@ -3575,7 +3596,7 @@ PUGI__NS_BEGIN  				if (node->value)  				{  					writer.write(' '); -					writer.write_string(node->value); +					node_output_pi_value(writer, node->value);  				}  				writer.write('?', '>'); | 
