widl: Fix detection of structures with non-conformant strings.

This commit is contained in:
Rob Shearman 2007-06-19 12:08:26 +01:00 committed by Alexandre Julliard
parent 6ad13f3ed1
commit be4cdefbf3
1 changed files with 2 additions and 1 deletions

View File

@ -1691,7 +1691,8 @@ static int get_struct_type(var_list_t *fields)
{
if (is_string_type(field->attrs, field->type))
{
has_conformance = 1;
if (is_conformant_array(field->type))
has_conformance = 1;
has_variance = 1;
continue;
}