mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2025-07-08 23:10:46 +00:00
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
|
@ -153,7 +153,7 @@ class DynamicImage {
|
||||||
friend class DynamicImages;
|
friend class DynamicImages;
|
||||||
|
|
||||||
// Sanity checking
|
// Sanity checking
|
||||||
bool IsValid() {return GetVMAddr() != 0;}
|
bool IsValid() {return GetVMSize() != 0;}
|
||||||
|
|
||||||
// Makes local copy of file path to mach-o binary
|
// Makes local copy of file path to mach-o binary
|
||||||
void InitializeFilePath(char *inFilePath) {
|
void InitializeFilePath(char *inFilePath) {
|
||||||
|
|
Loading…
Reference in a new issue