Commit 3a709fa5 authored by Alexandre Julliard's avatar Alexandre Julliard

widl: Fix a typo in updating the type format offset for strings.

parent 211ed7be
......@@ -984,8 +984,8 @@ static unsigned char get_parameter_fc( const type_t *type, const attr_list_t *at
if (is_declptr( type ) && get_pointer_fc( type, attrs, !is_return ) == RPC_FC_RP)
{
/* skip over pointer description straight to string description */
if (is_conformant_array( type )) typestring_offset += 4;
else typestring_offset += 2;
if (is_conformant_array( type )) *typestring_offset += 4;
else *typestring_offset += 2;
*flags |= IsSimpleRef;
}
break;
......
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