http://bugs.winehq.org/show_bug.cgi?id=12247
Maarten Lankhorst m.b.lankhorst@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |m.b.lankhorst@gmail.com
--- Comment #3 from Maarten Lankhorst m.b.lankhorst@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?