15 Oct
2004
15 Oct
'04
4:05 a.m.
I see it now. I'll work on a better fix. It looks like more things are broken here. Wednesday, October 13, 2004, 6:50:45 PM, you wrote:
Vitaliy Margolen <wine-patch(a)kievinfo.com> writes:
--- dlls/shell32/shlexec.c 14 Sep 2004 20:14:09 -0000 1.54 +++ dlls/shell32/shlexec.c 13 Oct 2004 11:55:04 -0000 @@ -94,7 +94,8 @@ { if (*fmt == '%') { - switch (*++fmt) + fmt++; + switch (*fmt++) {
Incrementing fmt twice here is going to break the rest of the function, you need to do that at the end.