add mising initializations for ShellExecuteEx()
authorMartin Fuchs <fuchs.martin@gmail.com>
Thu, 11 Dec 2003 20:14:15 +0000 (20:14 +0000)
committerMartin Fuchs <fuchs.martin@gmail.com>
Thu, 11 Dec 2003 20:14:15 +0000 (20:14 +0000)
svn path=/trunk/; revision=6960

reactos/subsys/system/explorer/winefile/winefile.c

index 6aed235..8d56ba6 100644 (file)
@@ -3048,6 +3048,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);