http://bugs.winehq.org/show_bug.cgi?id=15206
--- Comment #7 from Eric Pouech eric.pouech@orange.fr 2008-09-10 14:46:53 --- regarding comment #2: - you've hit one of the hard limit of the dbghelp's allocator; bumping the arena size is not a good idea as it's going to suck memory as crazy, as you've noticed afterwards <g> - 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 - the long term and clean fix is to no longer load all symbols & types at once (as we do know), but rather do it on a load on call basis, which will require a major overhall of dbghelp's internals
regarding comment #6: - with earlier MSVC versions, line number information worked fine - didn't check on that one. if you can provide me a small sample, I'll have a look