Module: wine Branch: master Commit: 654a83a5837d29e47fe77867a1ceb24daecb227e URL: https://gitlab.winehq.org/wine/wine/-/commit/654a83a5837d29e47fe77867a1ceb24...
Author: Piotr Caban piotr@codeweavers.com Date: Tue Aug 1 14:10:28 2023 +0200
winedump: Support dumping default values without VAL_COMP_NAME flag.
---
tools/winedump/reg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/winedump/reg.c b/tools/winedump/reg.c index 52036452990..573c2dc7f1c 100644 --- a/tools/winedump/reg.c +++ b/tools/winedump/reg.c @@ -201,7 +201,7 @@ static BOOL dump_value(unsigned int hive_off, unsigned int off) if (!val || memcmp(&val->signature, "vk", 2)) return FALSE;
- if (!(val->flags & VAL_COMP_NAME)) + if (!(val->flags & VAL_COMP_NAME) && val->name_size) { printf("unsupported value flags: %x\n", val->flags); return FALSE;