Commit a469d37e authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

xmllite/writer: Simplify setting default output encoding.

parent 2564862b
...@@ -1846,7 +1846,6 @@ static HRESULT create_writer_output(IUnknown *stream, IMalloc *imalloc, xml_enco ...@@ -1846,7 +1846,6 @@ static HRESULT create_writer_output(IUnknown *stream, IMalloc *imalloc, xml_enco
HRESULT WINAPI CreateXmlWriterOutputWithEncodingName(IUnknown *stream, IMalloc *imalloc, const WCHAR *encoding, HRESULT WINAPI CreateXmlWriterOutputWithEncodingName(IUnknown *stream, IMalloc *imalloc, const WCHAR *encoding,
IXmlWriterOutput **out) IXmlWriterOutput **out)
{ {
static const WCHAR utf8W[] = {'U','T','F','-','8',0};
xmlwriteroutput *output; xmlwriteroutput *output;
xml_encoding xml_enc; xml_encoding xml_enc;
HRESULT hr; HRESULT hr;
...@@ -1858,7 +1857,7 @@ HRESULT WINAPI CreateXmlWriterOutputWithEncodingName(IUnknown *stream, IMalloc * ...@@ -1858,7 +1857,7 @@ HRESULT WINAPI CreateXmlWriterOutputWithEncodingName(IUnknown *stream, IMalloc *
*out = NULL; *out = NULL;
xml_enc = parse_encoding_name(encoding ? encoding : utf8W, -1); xml_enc = encoding ? parse_encoding_name(encoding, -1) : XmlEncoding_UTF8;
if (SUCCEEDED(hr = create_writer_output(stream, imalloc, xml_enc, encoding, &output))) if (SUCCEEDED(hr = create_writer_output(stream, imalloc, xml_enc, encoding, &output)))
*out = &output->IXmlWriterOutput_iface; *out = &output->IXmlWriterOutput_iface;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment