What steps will reproduce the problem?
1. Run minidump_stackwalk with the attached crashreport and symbols;
2. Segmentation Fault will appear (somewhere) inside
BasicSourceLineResolver::Module::FindWindowsFrameInfo because of NULL
reference.
What is the expected output? What do you see instead?
A valid stack walk; no Segmentation Fault.
What version of the product are you using? On what operating system?
SVN revision 505 on Ubuntu Linux 8.10.
Please provide any additional information below.
The problem is that the chain for a specific linked_ptr contains a NULL
pointer. For some (very) strange reason, adding the following line before
the "return false" statement in linked_ptr_internal::depart() resolves this
problem:
p = next_; while (p->next_ != next_) p = p->next_;
Original issue reported on code.google.com by pvginkel on 31 Jan 2010 at 1:37
Original issue reported on code.google.com by
pvginkel
on 31 Jan 2010 at 1:37