widl: Follow aliases in check_remoting_fields so that the fields for the type are correctly enumerated.

This commit is contained in:
Rob Shearman 2008-12-29 12:05:19 +00:00 committed by Alexandre Julliard
parent 4a67e7a71e
commit fbffe4a229
1 changed files with 4 additions and 0 deletions

View File

@ -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;