mirror of
https://github.com/yuzu-emu/breakpad
synced 2024-11-22 11:13:37 +00:00
Fix corner cases on Windows dump_syms
- don't do iter decrement when the map empty. - add dummy file with id equals to 0 to represent unknown file. Change-Id: I3fe55a459c9fa835bbe0c4272e4ac12b1150c034 Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/3425732 Reviewed-by: Joshua Peraza <jperaza@chromium.org>
This commit is contained in:
parent
d55a5f3dca
commit
08bd844599
1 changed files with 8 additions and 2 deletions
|
@ -343,8 +343,10 @@ void PDBSourceLineWriter::Lines::AddLine(const Line& line) {
|
|||
do {
|
||||
auto iter = line_map_.lower_bound(line.rva);
|
||||
if (iter == line_map_.end()) {
|
||||
--iter;
|
||||
intercept(iter->second);
|
||||
if (!line_map_.empty()) {
|
||||
--iter;
|
||||
intercept(iter->second);
|
||||
}
|
||||
break;
|
||||
}
|
||||
is_intercept = false;
|
||||
|
@ -570,6 +572,10 @@ bool PDBSourceLineWriter::PrintSourceFiles() {
|
|||
return false;
|
||||
}
|
||||
|
||||
// Print a dummy file with id equals 0 to represent unknown file, because
|
||||
// inline records might have unknown call site.
|
||||
fwprintf(output_, L"FILE %d unknown file\n", 0);
|
||||
|
||||
CComPtr<IDiaSymbol> compiland;
|
||||
ULONG count;
|
||||
while (SUCCEEDED(compilands->Next(1, &compiland, &count)) && count == 1) {
|
||||
|
|
Loading…
Reference in a new issue