msxml3: Mirror the NULL checking logic (Coverity).

This commit is contained in:
Marcus Meissner 2014-03-08 09:43:55 +01:00 committed by Alexandre Julliard
parent 221fd39937
commit 6e25c34f2f
1 changed files with 1 additions and 1 deletions

View File

@ -1202,7 +1202,7 @@ static void mxwriter_write_starttag(mxwriter *writer, const WCHAR *qname, int le
write_node_indent(writer);
write_output_buffer(writer->buffer, ltW, 1);
write_output_buffer(writer->buffer, qname, len);
write_output_buffer(writer->buffer, qname ? qname : emptyW, qname ? len : 0);
writer_inc_indent(writer);
}