Peter Åstrand wrote:
Any ideas?
does this help (lines in patch are likely to be wrapped)?
A+

diff --git a/dlls/winmm/mci.c b/dlls/winmm/mci.c
index e73b5de..79aaafd 100644
--- a/dlls/winmm/mci.c
+++ b/dlls/winmm/mci.c
@@ -1093,7 +1093,7 @@ static    DWORD   MCI_ParseOptArgs(LPDWORD da
            }

            if (strncmpiW(args, str, len) == 0 &&
-               (args[len] == 0 || args[len] == ' ')) {
+ ((eid == MCI_STRING && len == 0) || args[len] == 0 || args[len] == ' ')) {
                /* store good values into data[] */
                args += len;
                while (*args == ' ') args++;

--
Eric Pouech



Reply via email to