Commit fbffe4a2 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

widl: Follow aliases in check_remoting_fields so that the fields for the type…

widl: Follow aliases in check_remoting_fields so that the fields for the type are correctly enumerated.
parent 4a67e7a7
......@@ -2471,6 +2471,10 @@ static void check_remoting_fields(const var_t *var, type_t *type)
const var_t *field;
const var_list_t *fields = NULL;
/* find the real type */
while (type->kind == TKIND_ALIAS)
type = type->orig;
if (type->checked)
return;
......
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