Commit 98eacd54 authored by Alexandre Julliard's avatar Alexandre Julliard

Allocate fonts and regions from the large heap too.

parent 514f4320
......@@ -743,6 +743,8 @@ void *GDI_AllocObject( WORD size, WORD magic, HGDIOBJ *handle, const struct gdi_
case MEMORY_DC_MAGIC:
case BITMAP_MAGIC:
case PALETTE_MAGIC:
case FONT_MAGIC:
case REGION_MAGIC:
if (!(obj = alloc_large_heap( size, handle ))) goto error;
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment