Commit 78d9a850 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

msxml3: Fix a typo in comment.

parent e5404d4b
...@@ -2522,7 +2522,7 @@ static HRESULT internal_parseBuffer(saxreader *This, const char *buffer, int siz ...@@ -2522,7 +2522,7 @@ static HRESULT internal_parseBuffer(saxreader *This, const char *buffer, int siz
if (encoding == XML_CHAR_ENCODING_NONE) if (encoding == XML_CHAR_ENCODING_NONE)
{ {
const WCHAR *ptr = (WCHAR*)buffer; const WCHAR *ptr = (WCHAR*)buffer;
/* xml declaration with possibly specfied encoding will be still handled by parser */ /* xml declaration with possibly specified encoding will be still handled by parser */
if ((size >= 2) && *ptr == '<' && ptr[1] != '?') if ((size >= 2) && *ptr == '<' && ptr[1] != '?')
{ {
enc_name = (xmlChar*)xmlGetCharEncodingName(XML_CHAR_ENCODING_UTF16LE); enc_name = (xmlChar*)xmlGetCharEncodingName(XML_CHAR_ENCODING_UTF16LE);
......
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