Also escape characters >=0x80 within the wineregistry savefile.
This commit is contained in:
parent
7e09874d92
commit
229a28fc34
|
@ -647,7 +647,7 @@ static void _save_USTRING( FILE *F, LPWSTR wstr, int escapeeq )
|
|||
s=wstr;
|
||||
while (*s) {
|
||||
doescape=0;
|
||||
if (*s>0xff)
|
||||
if (*s>0x7f)
|
||||
doescape = 1;
|
||||
if (*s=='\n')
|
||||
doescape = 1;
|
||||
|
|
Loading…
Reference in New Issue