Commit c6c844f1 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

winedump: Support REG_EXPAND_SZ values in regf files.

parent 17273028
......@@ -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)));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment