mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
widl: Set current_structure when writing out structure members to
ensure the conformance/variance calculation function can find the necessary fields in the structures.
This commit is contained in:
parent
36fd85f4cc
commit
5ca386755e
@ -1279,7 +1279,9 @@ static size_t write_struct_tfs(FILE *file, type_t *type,
|
||||
}
|
||||
|
||||
/* member layout */
|
||||
current_structure = type;
|
||||
write_struct_members(file, type, typestring_offset);
|
||||
current_structure = NULL;
|
||||
return start_offset;
|
||||
case RPC_FC_CSTRUCT:
|
||||
case RPC_FC_CPSTRUCT:
|
||||
@ -1403,7 +1405,9 @@ static size_t write_struct_tfs(FILE *file, type_t *type,
|
||||
print_file(file, 2, "NdrFcShort(0x0),\t/* FIXME: pointer stuff */\n");
|
||||
|
||||
*typestring_offset += 8;
|
||||
current_structure = type;
|
||||
write_struct_members(file, type, typestring_offset);
|
||||
current_structure = NULL;
|
||||
|
||||
return start_offset;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user