2 Aug
2023
2 Aug
'23
12:48 p.m.
From: Piotr Caban <piotr(a)codeweavers.com> --- tools/winedump/reg.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/winedump/reg.c b/tools/winedump/reg.c index 65bede34987..28b6160e9cd 100644 --- a/tools/winedump/reg.c +++ b/tools/winedump/reg.c @@ -235,6 +235,9 @@ static BOOL dump_value(unsigned int hive_off, unsigned int off) switch (val->data_type) { + case REG_EXPAND_SZ: + printf("str(2):"); + /* fall through */ case REG_SZ: printf("%s", !data ? "\"\"" : get_unicode_str((const WCHAR *)data, data_size / sizeof(WCHAR))); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/3477