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

widl: A structure with variance, but without conformance should be a complex…

widl: A structure with variance, but without conformance should be a complex struct instead of a conformant, varying struct.
parent 197bddfb
......@@ -1622,7 +1622,12 @@ static int get_struct_type(var_list_t *fields)
}
if( has_variance )
return RPC_FC_CVSTRUCT;
{
if ( has_conformance )
return RPC_FC_CVSTRUCT;
else
return RPC_FC_BOGUS_STRUCT;
}
if( has_conformance && has_pointer )
return RPC_FC_CPSTRUCT;
if( has_conformance )
......
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