[Bug 12247] Page fault in quartz during DLL registration prevents video playback in Ares P2P client

wine-bugs at winehq.org wine-bugs at winehq.org
Sun Jun 22 01:20:38 CDT 2008


http://bugs.winehq.org/show_bug.cgi?id=12247


Maarten Lankhorst <m.b.lankhorst at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |m.b.lankhorst at gmail.com




--- Comment #3 from Maarten Lankhorst <m.b.lankhorst at gmail.com>  2008-06-22 01:20:38 ---
What happens if you change the find_data function in
wine/dlls/quartz/filtermapper.c to this:

static int find_data(const struct Vector * v, const BYTE * pData, int size)
{
    int index;
    if (!pData) return -1;

    for (index = 0; index < v->current; index++)
        if (!memcmp(v->pData + index, pData, size))
            return index;
    /* not found */
    return -1;
}

will it run?


-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list