Commit 90decb63 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

widl: Properly size the return value procformat.

parent 6f85f989
......@@ -1892,8 +1892,13 @@ size_t get_size_procformatstring(const ifref_t *ifaces)
}
}
var = func->def;
/* return value size */
size += 2; /* FIXME: determine real size */
if (is_void(var->type, NULL))
size += 2;
else
size += get_size_procformatstring_var(var);
func = PREV_LINK(func);
}
}
......
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