http://bugs.winehq.org/show_bug.cgi?id=15206
--- Comment #4 from Dan Kegel dank@kegel.com 2008-09-09 17:32:39 --- len was 64k. This works around the latest problem, now I'm back on looking at the chromium bug:
--- a/dlls/dbghelp/module.c +++ b/dlls/dbghelp/module.c @@ -139,7 +139,7 @@ struct module* module_new(struct process* pcs, const WCHAR* name, get_module_type(type, virtual), mod_addr, mod_addr + size, debugstr_w(name));
- pool_init(&module->pool, 65536); + pool_init(&module->pool, 2*65536);
module->module.SizeOfStruct = sizeof(module->module); module->module.BaseOfImage = mod_addr;