Fixed missing initializations of struct SHELLEXECUTEINFO.

This commit is contained in:
Martin Fuchs 2003-12-12 04:11:25 +00:00 committed by Alexandre Julliard
parent 1da37e6ac4
commit 17b9837af4
1 changed files with 4 additions and 0 deletions

View File

@ -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);