From 229a28fc34526201f1eea5aa400d36bbe59b3707 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Wed, 13 Oct 1999 12:15:19 +0000 Subject: [PATCH] Also escape characters >=0x80 within the wineregistry savefile. --- misc/registry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/registry.c b/misc/registry.c index 7d1183adf94..fc3fd31ddca 100644 --- a/misc/registry.c +++ b/misc/registry.c @@ -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;