aboutsummaryrefslogtreecommitdiff
path: root/src/processor/minidump.cc
diff options
context:
space:
mode:
authorwaylonis <waylonis@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-11-02 01:02:39 +0000
committerwaylonis <waylonis@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-11-02 01:02:39 +0000
commite47047b3835dcbb5da7fe7f5f9b6d78a5307122a (patch)
tree2d3ace6eccb36f0ca22ccc21cfa1ad8fbbb6eea3 /src/processor/minidump.cc
parentb26101995195dec32650a9d156f5a904130a49a6 (diff)
downloadgoogle-breakpad-e47047b3835dcbb5da7fe7f5f9b6d78a5307122a.tar.gz
Fix minor naming inconsistency (#67). r=mmentovai
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@58 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/processor/minidump.cc')
-rw-r--r--src/processor/minidump.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/processor/minidump.cc b/src/processor/minidump.cc
index f0d728c3..06993fbd 100644
--- a/src/processor/minidump.cc
+++ b/src/processor/minidump.cc
@@ -462,13 +462,13 @@ void MinidumpContext::FreeContext() {
bool MinidumpContext::CheckAgainstSystemInfo(u_int32_t context_cpu_type) {
- // It's OK if the minidump doesn't contain a SYSTEM_INFO_STREAM,
+ // It's OK if the minidump doesn't contain an MD_SYSTEM_INFO_STREAM,
// as this function just implements a sanity check.
MinidumpSystemInfo* system_info = minidump_->GetSystemInfo();
if (!system_info)
return true;
- // If there is a SYSTEM_INFO_STREAM, it should contain valid system info.
+ // If there is an MD_SYSTEM_INFO_STREAM, it should contain valid system info.
const MDRawSystemInfo* raw_system_info = system_info->system_info();
if (!raw_system_info)
return false;
@@ -2128,12 +2128,12 @@ bool Minidump::Read() {
// type.
unsigned int stream_type = directory_entry->stream_type;
switch (stream_type) {
- case THREAD_LIST_STREAM:
- case MODULE_LIST_STREAM:
- case MEMORY_LIST_STREAM:
- case EXCEPTION_STREAM:
- case SYSTEM_INFO_STREAM:
- case MISC_INFO_STREAM: {
+ case MD_THREAD_LIST_STREAM:
+ case MD_MODULE_LIST_STREAM:
+ case MD_MEMORY_LIST_STREAM:
+ case MD_EXCEPTION_STREAM:
+ case MD_SYSTEM_INFO_STREAM:
+ case MD_MISC_INFO_STREAM: {
if (stream_map->find(stream_type) != stream_map->end()) {
// Another stream with this type was already found. A minidump
// file should contain at most one of each of these stream types.