http://bugs.winehq.org/show_bug.cgi?id=15206
--- Comment #9 from Roy Shea royshea@gmail.com 2008-09-12 12:52:21 --- Created an attachment (id=16043) --> (http://bugs.winehq.org/attachment.cgi?id=16043) Patch allowing variable sized arenas in the pool allocator
(In reply to comment #7)
regarding comment #2:
- the cleanest short term fix would be to change the vector handling in
storage.c so that it no longer enforce the assert you've seen
Attached is a patch implementing this fix. Each arena now tracks a custom size. Most arenas continue to use the default size set by pool_init. Large allocation requests create an arena of custom size to satisfy the request.