http://bugs.winehq.org/show_bug.cgi?id=3785
--- Comment #14 from Jeff Zaroyko jeffzaroyko@gmail.com 2008-08-20 20:49:37 --- (In reply to comment #13)
I cannot guess what message: err:local:LOCAL_GetBlock not enough space in GDI heap 10c7 for 65452 bytes causes in wine internally.
It doesn't cause anything internally, the function that this message originates from is the Win16 LocalAlloc, when you see this message it returns 0 which is normal for failure and there is no observable fault with the program.
Looking at the logs this program calls LocalAlloc over 2000 times trying to allocate ffa4 bytes, so it looks completely normal that at some point LocalAlloc should stop allocating memory if the program is intentionally not freeing any.
Looks invalid to me.