mirror of
https://github.com/reactos/wine.git
synced 2025-02-09 05:36:56 +00:00
widl: Do not generate code that initializes a binding handle.
This commit is contained in:
parent
c7174f9fff
commit
623f142945
@ -79,7 +79,8 @@ static void write_parameters_init(const func_t *func)
|
||||
while (NEXT_LINK(var)) var = NEXT_LINK(var);
|
||||
while (var)
|
||||
{
|
||||
print_server("%s = 0;\n", var->name);
|
||||
if (var->type->type != RPC_FC_BIND_PRIMITIVE)
|
||||
print_server("%s = 0;\n", var->name);
|
||||
|
||||
var = PREV_LINK(var);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user