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

widl: Fix check_remoting_fields to enumerate the correct list of fields.

parent 925a7005
......@@ -2623,7 +2623,7 @@ static void check_remoting_fields(const var_t *var, type_t *type)
fields = type->fields_or_args;
}
if (fields) LIST_FOR_EACH_ENTRY( field, type->fields_or_args, const var_t, entry )
if (fields) LIST_FOR_EACH_ENTRY( field, fields, const var_t, entry )
if (field->type) check_field_common(type, type->name, field);
}
......
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