Module: wine Branch: master Commit: ebfbec6e5c29db673d00eaf16ce14981b950b312 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ebfbec6e5c29db673d00eaf16c...
Author: Dan Hipschman dsh@linux.ucla.edu Date: Mon Oct 15 18:07:52 2007 -0700
widl: Output the correct value for TableSize in ProxyFileInfo.
---
tools/widl/proxy.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/widl/proxy.c b/tools/widl/proxy.c index 65bb1fa..5354c27 100644 --- a/tools/widl/proxy.c +++ b/tools/widl/proxy.c @@ -661,7 +661,7 @@ void write_proxies(ifref_list_t *ifaces) c = 0; if (ifaces) LIST_FOR_EACH_ENTRY( cur, ifaces, ifref_t, entry ) - if(cur->iface->ref) + if(cur->iface->ref && cur->iface->funcs && need_proxy(cur->iface)) { fprintf(proxy, " if (!_%s_CHECK_IID(%d))\n", file_id, c); fprintf(proxy, " {\n");