[Bug 8767] CreateDIBSection driver loading race

wine-bugs at winehq.org wine-bugs at winehq.org
Fri May 16 15:51:10 CDT 2008


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


Nikolay Sivov <bunglehead at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bunglehead at gmail.com




--- Comment #3 from Nikolay Sivov <bunglehead at gmail.com>  2008-05-16 15:51:10 ---
I'm not able to compile you test application..problem is in fourth argument
which should be (void**). After this modification:

- dib = CreateDIBSection(NULL, &bmi, 0, (void *)buf, NULL, 0);
+ dib = CreateDIBSection(NULL, &bmi, 0, (void **)&buf, NULL, 0);

it works for me on wine-1.0-rc1-g2470b0b (and on winxp of course too)
Did I miss something?

Please check it again with current git.


-- 
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