Commit 17b9837a authored by Martin Fuchs's avatar Martin Fuchs Committed by Alexandre Julliard

Fixed missing initializations of struct SHELLEXECUTEINFO.

parent 1da37e6a
......@@ -3066,6 +3066,10 @@ BOOL launch_entry(Entry* entry, HWND hwnd, UINT nCmdShow)
shexinfo.cbSize = sizeof(SHELLEXECUTEINFO);
shexinfo.fMask = SEE_MASK_IDLIST;
shexinfo.hwnd = hwnd;
shexinfo.lpVerb = NULL;
shexinfo.lpFile = NULL;
shexinfo.lpParameters = NULL;
shexinfo.lpDirectory = NULL;
shexinfo.nShow = nCmdShow;
shexinfo.lpIDList = get_to_absolute_pidl(entry, hwnd);
......
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