For ShellExecuteExA we need to copy out the hProcess value from the W
structure.
This commit is contained in:
parent
be84f8d9e6
commit
984931bd09
|
@ -1398,6 +1398,9 @@ BOOL WINAPI ShellExecuteExA (LPSHELLEXECUTEINFOA sei)
|
|||
|
||||
sei->hInstApp = seiW.hInstApp;
|
||||
|
||||
if (sei->fMask & SEE_MASK_NOCLOSEPROCESS)
|
||||
sei->hProcess = seiW.hProcess;
|
||||
|
||||
if (wVerb) SHFree(wVerb);
|
||||
if (wFile) SHFree(wFile);
|
||||
if (wParameters) SHFree(wParameters);
|
||||
|
|
Loading…
Reference in New Issue