Commit 18724eae authored by Dan Hipschman's avatar Dan Hipschman Committed by Alexandre Julliard

widl: Replace erroneously removed current_func assignment.

This accidentally came out and should not have. Thanks to Eric Kohl for pointing this out to me.
parent e5256d98
......@@ -1582,6 +1582,8 @@ static size_t process_tfs(FILE *file, const ifref_list_t *ifaces, int for_object
LIST_FOR_EACH_ENTRY( func, iface->iface->funcs, const func_t, entry )
{
if (is_local(func->def->attrs)) continue;
current_func = func;
if (func->args)
LIST_FOR_EACH_ENTRY( var, func->args, const var_t, entry )
var->type->typestring_offset
......
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