8 Sep
2009
8 Sep
'09
3:13 p.m.
http://bugs.winehq.org/show_bug.cgi?id=18041 --- Comment #12 from mst(a)collogia.de 2009-09-08 10:13:46 --- Hi, I do not know if this is a desired solution but modifying GdiAlphaBlend in bitblt.c does the trick and application works as desired. BOOL WINAPI GdiAlphaBlend(...) { BOOL ret = FALSE; DC *dcDst, *dcSrc; dcSrc = get_dc_ptr( hdcSrc ); if ( !dcSrc ) return ret; <-- Insert this to get around nil Pointer if ((dcDst = get_dc_ptr( hdcDst ))) { Best regards -- 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.