Issue 160 - Reviewer Chris Rogers

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@156 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
ted.mielczarek 2007-05-04 19:37:00 +00:00
parent 9be806efde
commit 9a3263a670
2 changed files with 9 additions and 4 deletions

View file

@ -153,7 +153,8 @@ class DynamicImage {
path = "(unknown)";
}
printf("%p: %s\n", GetLoadAddress(), path);
MachHeader(*GetMachHeader()).Print();
mach_header *header = GetMachHeader();
MachHeader(*header).Print();
printf("vmaddr\t\t: %p\n", reinterpret_cast<void*>(GetVMAddr()));
printf("vmsize\t\t: %d\n", GetVMSize());
printf("slide\t\t: %d\n", GetVMAddrSlide());
@ -278,7 +279,8 @@ class DynamicImages {
for (int i = 0; i < (int)image_list_.size(); ++i) {
printf("dyld: %p: name = %s\n", _dyld_get_image_header(i),
_dyld_get_image_name(i) );
MachHeader(*_dyld_get_image_header(i)).Print();
const mach_header *header = _dyld_get_image_header(i);
MachHeader(*header).Print();
}
}