Commit e4b1abef authored by Alexander Nicolaysen Sørnes's avatar Alexander Nicolaysen Sørnes Committed by Alexandre Julliard

regedit: Fix comment handling in Unicode file import.

parent e83d8dad
......@@ -763,8 +763,8 @@ void processRegLinesW(FILE *in)
s_eol = strchrW(s, '\n');
/* If it is a comment line then discard it and go around again */
if (buf[0] == '#') {
s = buf;
if (*s == '#') {
s = s_eol + 1;
continue;
}
......
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