mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-01-05 22:18:21 +01:00
Fix -Wunreachable-code-aggressive.
Bug: chromium:1066980 Change-Id: Iddd276bb884076591399433c6191425b3a131d0d Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/2995406 Reviewed-by: Mike Frysinger <vapier@chromium.org>
This commit is contained in:
parent
b95c4868b1
commit
04a9ffbe59
1 changed files with 1 additions and 3 deletions
|
|
@ -725,10 +725,8 @@ bool PDBSourceLineWriter::PrintFrameData() {
|
|||
PDBModuleInfo info;
|
||||
if (GetModuleInfo(&info) && info.cpu == L"x86_64") {
|
||||
return PrintFrameDataUsingEXE();
|
||||
} else {
|
||||
return PrintFrameDataUsingPDB();
|
||||
}
|
||||
return false;
|
||||
return PrintFrameDataUsingPDB();
|
||||
}
|
||||
|
||||
bool PDBSourceLineWriter::PrintCodePublicSymbol(IDiaSymbol* symbol,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue