From ec99c8553155afe29ef2c5dcf37160f85bbb5822 Mon Sep 17 00:00:00 2001 From: Dylan Smith Date: Fri, 18 Jun 2010 17:42:55 -0400 Subject: [PATCH] shdocvw: Native RegisterClassEx requires cbSize to be set. --- dlls/shdocvw/iexplore.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/shdocvw/iexplore.c b/dlls/shdocvw/iexplore.c index 5ef0b365915..e4e7618eba0 100644 --- a/dlls/shdocvw/iexplore.c +++ b/dlls/shdocvw/iexplore.c @@ -90,6 +90,7 @@ void register_iewindow_class(void) WNDCLASSEXW wc; memset(&wc, 0, sizeof wc); + wc.cbSize = sizeof(wc); wc.style = 0; wc.lpfnWndProc = ie_window_proc; wc.cbClsExtra = 0;