Breakpad rejects valid modules with a vmaddr of zero on Mac (#176). Patch

by Benjamin Smedberg <bsmedberg>.  r=me


git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@220 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
mmentovai 2007-09-28 18:30:48 +00:00
parent 657a6c4a96
commit d7d6c74a68

View file

@ -153,7 +153,7 @@ class DynamicImage {
friend class DynamicImages;
// Sanity checking
bool IsValid() {return GetVMAddr() != 0;}
bool IsValid() {return GetVMSize() != 0;}
// Makes local copy of file path to mach-o binary
void InitializeFilePath(char *inFilePath) {