mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-01-07 23:18:14 +01:00
Add logging to minidump processor (#82). Part 2: add messages to the rest of
the processor. r=ted.mielczarek http://groups.google.com/group/google-breakpad-dev/browse_thread/thread/cf56b767383a5d4b git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@172 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
08c8c4ddcf
commit
65571f17ed
17 changed files with 265 additions and 60 deletions
|
|
@ -2650,9 +2650,9 @@ bool MinidumpMiscInfo::Read(u_int32_t expected_size) {
|
|||
}
|
||||
}
|
||||
|
||||
if (misc_info_.size_of_info != expected_size) {
|
||||
if (expected_size != misc_info_.size_of_info) {
|
||||
BPLOG(ERROR) << "MinidumpMiscInfo size mismatch, " <<
|
||||
misc_info_.size_of_info << " != " << expected_size;
|
||||
expected_size << " != " << misc_info_.size_of_info;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue