https://bugs.winehq.org/show_bug.cgi?id=44153
Bug ID: 44153 Summary: ShellExecute crash when opening explorer.exe Product: Wine Version: 3.0-rc1 Hardware: x86 OS: Linux Status: NEW Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: leslie_alistair@hotmail.com Distribution: ---
Here is the simplest test case to show the crash.
int main(int argc, char *argv[]) { ShellExecute(NULL, _T("OPEN"), _T("explorer.exe"), _T("/select, "C:\temp\hello.txt""), NULL, SW_SHOW);
return 0; }