Commit ec99c855 authored by Dylan Smith's avatar Dylan Smith Committed by Alexandre Julliard

shdocvw: Native RegisterClassEx requires cbSize to be set.

parent fcbc4818
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment