winedump: Support REG_NONE values in regf files.

This commit is contained in:
Piotr Caban 2023-08-01 14:34:22 +02:00 committed by Alexandre Julliard
parent c6c844f172
commit 814d8d74f6

View file

@ -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 */