http://bugs.winehq.org/show_bug.cgi?id=11073
Jason Edmeades us@edmeades.me.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|wine-bugs@winehq.org |us@edmeades.me.uk
--- Comment #39 from Jason Edmeades us@edmeades.me.uk 2012-11-19 16:38:03 CST --- Problem is heap corruption if a single parameter is > MAX_PATH characters, because that's the length of the static buffer in WCMD_Parameter.
This fixes the problem: - static WCHAR param[MAX_PATH]; + static WCHAR param[MAXSTRING];
Have a patch in my queue, will be sent in with my next batch.