http://bugs.winehq.org/show_bug.cgi?id=22110
Summary: cmd can't execute start.exe with parameters Product: Wine Version: 1.1.41 Platform: x86 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: cmd AssignedTo: wine-bugs@winehq.org ReportedBy: pleasenospam325@mail.ru
source: http://forum.winehq.org/viewtopic.php?t=7994
in terminal do: wine cmd then: start cmd A new command prompt should open, but I get "File not found" error. In 1.1.40 it works, but not in 41.
reason: cmd invokes: CreateProcessW(NULL, L"start.exe foo", ...) That worked in 1.1.40, but no longer works in 1.1.41 strange thing: CreateProcessW(NULL, L"start.exe", ...) works
This commit must've caused this bug: http://source.winehq.org/git/wine.git/?a=commitdiff;h=c7bed19c0b71188799eff6...
I reverted it, ran make and now it works.
fail: *************************************************** # wine cmd CMD Version 1.1.41 C:>start cmd File not found C:> ***************************************************
OK: *************************************************** # wine cmd CMD Version 1.1.40 C:>start cmd fixme:exec:SHELL_execute flags ignored: 0x00000100 C:> ***************************************************