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