Recording error: "Should descend into data chunk. Please report."

Eric Pouech eric.pouech at wanadoo.fr
Mon Nov 21 14:36:46 CST 2005


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




More information about the wine-devel mailing list