regedit: Fix comment handling in Unicode file import.

This commit is contained in:
Alexander Nicolaysen Sørnes 2008-07-11 02:55:14 +02:00 committed by Alexandre Julliard
parent e83d8dad04
commit e4b1abefdd
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}