In message 20020317225419.A23058@arizona.localdomain, "Kevin O'Connor" writes:
Unfortunately, I quickly ran into this problem as well. I am not familiar enough with wine to fix this error by myself - would you be willing to push your hack along so I can take a look at this also?
Here you go. I have no idea if this patch is correct, or if it's just papering over problems elsewhere. It does a reasonable job for me, your mileage may vary.
Index: objects/gdiobj.c =================================================================== RCS file: /home/wine/wine/objects/gdiobj.c,v retrieving revision 1.66 diff -c -3 -p -r1.66 gdiobj.c *** objects/gdiobj.c 10 Mar 2002 00:18:35 -0000 1.66 --- objects/gdiobj.c 18 Mar 2002 17:09:31 -0000 *************** void *GDI_AllocObject( WORD size, WORD m *** 318,323 **** --- 318,328 ---- case ENHMETAFILE_MAGIC: case ENHMETAFILE_DC_MAGIC: case BITMAP_MAGIC: + case REGION_MAGIC: + case PALETTE_MAGIC: + case FONT_MAGIC: + case BRUSH_MAGIC: + case PEN_MAGIC: if (!(obj = alloc_large_heap( size, handle ))) goto error; break; default: