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

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

parent 6ad13f3e
......@@ -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;
}
......
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