Gabriel Ivăncescu : mshtml: Don't initialize HTMLElement dispex for Option constructor.
Module: wine Branch: master Commit: f3ad67d7a5d879f5894a934f98a4cde392f6e4e2 URL: https://gitlab.winehq.org/wine/wine/-/commit/f3ad67d7a5d879f5894a934f98a4cde... Author: Gabriel Ivăncescu <gabrielopcode(a)gmail.com> Date: Tue Jan 3 18:27:04 2023 +0200 mshtml: Don't initialize HTMLElement dispex for Option constructor. It's not an element, so it doesn't even implement those interfaces. Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com> --- dlls/mshtml/htmlselect.c | 1 - 1 file changed, 1 deletion(-) diff --git a/dlls/mshtml/htmlselect.c b/dlls/mshtml/htmlselect.c index 4dfbbd916a7..c5610b41a1d 100644 --- a/dlls/mshtml/htmlselect.c +++ b/dlls/mshtml/htmlselect.c @@ -646,7 +646,6 @@ static dispex_static_data_t HTMLOptionElementFactory_dispex = { &HTMLOptionElementFactory_dispex_vtbl, IHTMLOptionElementFactory_tid, HTMLOptionElementFactory_iface_tids, - HTMLElement_init_dispex_info }; HRESULT HTMLOptionElementFactory_Create(HTMLInnerWindow *window, HTMLOptionElementFactory **ret_ptr)
participants (1)
-
Alexandre Julliard