Commit 229a28fc authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Also escape characters >=0x80 within the wineregistry savefile.

parent 7e09874d
...@@ -647,7 +647,7 @@ static void _save_USTRING( FILE *F, LPWSTR wstr, int escapeeq ) ...@@ -647,7 +647,7 @@ static void _save_USTRING( FILE *F, LPWSTR wstr, int escapeeq )
s=wstr; s=wstr;
while (*s) { while (*s) {
doescape=0; doescape=0;
if (*s>0xff) if (*s>0x7f)
doescape = 1; doescape = 1;
if (*s=='\n') if (*s=='\n')
doescape = 1; doescape = 1;
......
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