http://bugs.winehq.org/show_bug.cgi?id=15206 --- Comment #4 from Dan Kegel <dank(a)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; -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.