commit | 229a28fc34526201f1eea5aa400d36bbe59b3707 | [log] [tgz] |
---|---|---|
author | Marcus Meissner <Marcus.Meissner@caldera.de> | Wed Oct 13 12:15:19 1999 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed Oct 13 12:15:19 1999 +0000 |
tree | 816add653175c0cc89a0a1f0e9cbeb61c23a990b | |
parent | 7e09874d928c86d41a25a56e24616b72d31acdea [diff] [blame] |
Also escape characters >=0x80 within the wineregistry savefile.
diff --git a/misc/registry.c b/misc/registry.c index 7d1183a..fc3fd31 100644 --- a/misc/registry.c +++ b/misc/registry.c
@@ -647,7 +647,7 @@ s=wstr; while (*s) { doescape=0; - if (*s>0xff) + if (*s>0x7f) doescape = 1; if (*s=='\n') doescape = 1;