Commit 07c6b139 authored by Hugh McMaster's avatar Hugh McMaster Committed by Alexandre Julliard

reg: Add case for REG_MULTI_SZ.

parent b14e1ba8
...@@ -282,6 +282,8 @@ static LPBYTE get_regdata(LPWSTR data, DWORD reg_type, WCHAR separator, DWORD *r ...@@ -282,6 +282,8 @@ static LPBYTE get_regdata(LPWSTR data, DWORD reg_type, WCHAR separator, DWORD *r
out_data = NULL; out_data = NULL;
break; break;
} }
case REG_MULTI_SZ:
/* FIXME: Needs handling */
default: default:
output_message(STRING_UNHANDLED_TYPE, reg_type, data); output_message(STRING_UNHANDLED_TYPE, reg_type, data);
} }
......
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