mirror of
https://github.com/yuzu-emu/breakpad
synced 2024-11-22 22:33:39 +00: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;
|
PDBModuleInfo info;
|
||||||
if (GetModuleInfo(&info) && info.cpu == L"x86_64") {
|
if (GetModuleInfo(&info) && info.cpu == L"x86_64") {
|
||||||
return PrintFrameDataUsingEXE();
|
return PrintFrameDataUsingEXE();
|
||||||
} else {
|
|
||||||
return PrintFrameDataUsingPDB();
|
|
||||||
}
|
}
|
||||||
return false;
|
return PrintFrameDataUsingPDB();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PDBSourceLineWriter::PrintCodePublicSymbol(IDiaSymbol* symbol,
|
bool PDBSourceLineWriter::PrintCodePublicSymbol(IDiaSymbol* symbol,
|
||||||
|
|
Loading…
Reference in a new issue