2 Aug
2023
2 Aug
'23
7:48 a.m.
From: Piotr Caban <piotr(a)codeweavers.com> --- tools/winedump/reg.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/winedump/reg.c b/tools/winedump/reg.c index 28b6160e9cd..46841a9d342 100644 --- a/tools/winedump/reg.c +++ b/tools/winedump/reg.c @@ -235,6 +235,10 @@ static BOOL dump_value(unsigned int hive_off, unsigned int off) switch (val->data_type) { + case REG_NONE: + /* TODO: dump as REG_NONE value. */ + printf("hex:"); + break; case REG_EXPAND_SZ: printf("str(2):"); /* fall through */ -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/3477