From ebfbec6e5c29db673d00eaf16ce14981b950b312 Mon Sep 17 00:00:00 2001 From: Dan Hipschman Date: Mon, 15 Oct 2007 18:07:52 -0700 Subject: [PATCH] widl: Output the correct value for TableSize in ProxyFileInfo. --- tools/widl/proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/widl/proxy.c b/tools/widl/proxy.c index 65bb1fa9915..5354c27c286 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");