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:
parent
657a6c4a96
commit
d7d6c74a68
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue