[Bug 49116] Windows 10 1903 SDK (10.0.18362.0) installer crashes (method invocation on wrong CCW interface?)

WineHQ Bugzilla wine-bugs at winehq.org
Sat May 9 12:49:42 CDT 2020


https://bugs.winehq.org/show_bug.cgi?id=49116

--- Comment #3 from Zebediah Figura <z.figura12 at gmail.com> ---
cominterop_get_ccw_checked() just blithely adds all the methods defined in that
object. That's right for interfaces, but wrong for objects; it should:

* include its parent object as well;
* exclude non-public methods;
* exclude static methods;
* exclude constructors and destructors.

(Actually I don't think that's even completely right for interfaces. Visibility
and constructors/destructors aren't relevant there, but inheritance and static
methods are...)

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list