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

This commit is contained in:
Marcus Meissner 1999-10-13 12:15:19 +00:00 committed by Alexandre Julliard
parent 7e09874d92
commit 229a28fc34
1 changed files with 1 additions and 1 deletions

View File

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