Module: wine Branch: master Commit: 814d8d74f6172f488d8a2c8dfd44dce8412078aa URL: https://gitlab.winehq.org/wine/wine/-/commit/814d8d74f6172f488d8a2c8dfd44dce...
Author: Piotr Caban piotr@codeweavers.com Date: Tue Aug 1 14:34:22 2023 +0200
winedump: Support REG_NONE values in regf files.
---
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 */