[Bug 18041] Teamviewer 4 crash on Add group of Partner List

wine-bugs at winehq.org wine-bugs at winehq.org
Tue Sep 8 10:13:49 CDT 2009


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





--- Comment #12 from mst at 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.



More information about the wine-bugs mailing list