Fix an instance of -Wunused-but-set-variable.
Bug: chromium:1203071 Change-Id: I749fcfe30f9d634acb314a43f9c9ffcdbb26195c Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/3053832 Reviewed-by: Sterling Augustine <saugustine@google.com>
This commit is contained in:
parent
f080350795
commit
4c27c15b84
1 changed files with 2 additions and 2 deletions
|
@ -432,7 +432,7 @@ bool MinidumpGenerator::WriteMinidump() {
|
|||
full_dump_file_,
|
||||
static_cast<MINIDUMP_TYPE>((dump_type_ & (~MiniDumpNormal))
|
||||
| MiniDumpWithHandleData),
|
||||
exception_pointers_ ? &dump_exception_info : NULL,
|
||||
dump_exception_pointers,
|
||||
&user_streams,
|
||||
NULL) != FALSE;
|
||||
}
|
||||
|
@ -449,7 +449,7 @@ bool MinidumpGenerator::WriteMinidump() {
|
|||
dump_file_,
|
||||
static_cast<MINIDUMP_TYPE>((dump_type_ & (~MiniDumpWithFullMemory))
|
||||
| MiniDumpNormal),
|
||||
exception_pointers_ ? &dump_exception_info : NULL,
|
||||
dump_exception_pointers,
|
||||
&user_streams,
|
||||
callback_info_) != FALSE;
|
||||
|
||||
|
|
Loading…
Reference in a new issue