Commit ec3cf77d authored by Alexandre Julliard's avatar Alexandre Julliard

Skip the Unicode signature if present.

parent f0c62a89
......@@ -852,7 +852,9 @@ static DWORD parse_buffer( struct inf_file *file, const WCHAR *buffer, const WCH
struct parser parser;
const WCHAR *pos = buffer;
parser.start = buffer;
if (*pos == 0xfeff) pos++; /* skip Unicode BOM signature */
parser.start = pos;
parser.end = end;
parser.file = file;
parser.line = NULL;
......
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