http://bugs.winehq.org/show_bug.cgi?id=7556
Summary: powerbuilder 10.5 demo aborts after splash screen Product: Wine Version: CVS Platform: Other URL: http://www.sybase.com/products/developmentintegration/po werbuilder OS/Version: other Status: NEW Keywords: download Severity: normal Priority: P2 Component: wine-x11driver AssignedTo: wine-bugs@winehq.org ReportedBy: dank@kegel.com
See the attachment to bug 3699 to see how to get pb 10.5 demo to install.
I'm seeing err:bitmap:X11DRV_DIB_SetImageBits Out of memory! in powerbuilder 10.5 demo, right after the splash screen.
The app aborts shortly after the bitmap err, but it's not clear if the bitmap err causes the crash, could be something else.
Here's a bit of the log up to the err:
0009:Call gdi32.SetDIBits(000002ec,00000a78,00000000,00000010,01000f28,01001078,00000000) ret=10b964c9 trace:bitmap:X11DRV_DIB_Lock Locking 0xa78 from thread 0009 trace:bitmap:X11DRV_DIB_Coerce GdiMod requested in status GdiMod err:bitmap:X11DRV_DIB_SetImageBits Out of memory!
Looking a bit, I see calloc(lines 16, bytes_per_line 126322564) returned NULL. It seems that the 'info' arg to X11DRV_SetDIBits() is screwy. After the line
if (DIB_GetBitmapInfo( &info->bmiHeader, &width, &height, &descr.infoBpp, &descr.compression ) == -1) return 0; I added TRACE("width %d, height %d\n", width, height); and it printed trace:bitmap:X11DRV_SetDIBits width -505290271, height -151592479
I'd like to look into this further, but I don't have time at the moment.