mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-22 21:54:00 +02:00
* Updated breakpad to latest version.
This commit is contained in:
7
thirdparty/breakpad/processor/minidump.cc
vendored
7
thirdparty/breakpad/processor/minidump.cc
vendored
@@ -1758,6 +1758,7 @@ string MinidumpModule::code_identifier() const {
|
||||
}
|
||||
|
||||
case MD_OS_MAC_OS_X:
|
||||
case MD_OS_IOS:
|
||||
case MD_OS_SOLARIS:
|
||||
case MD_OS_LINUX: {
|
||||
// TODO(mmentovai): support uuid extension if present, otherwise fall
|
||||
@@ -2482,7 +2483,7 @@ const MinidumpModule* MinidumpModuleList::GetMainModule() const {
|
||||
|
||||
// The main code module is the first one present in a minidump file's
|
||||
// MDRawModuleList.
|
||||
return GetModuleAtSequence(0);
|
||||
return GetModuleAtIndex(0);
|
||||
}
|
||||
|
||||
|
||||
@@ -3095,6 +3096,10 @@ string MinidumpSystemInfo::GetOS() {
|
||||
os = "mac";
|
||||
break;
|
||||
|
||||
case MD_OS_IOS:
|
||||
os = "ios";
|
||||
break;
|
||||
|
||||
case MD_OS_LINUX:
|
||||
os = "linux";
|
||||
break;
|
||||
|
Reference in New Issue
Block a user