mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2025-01-11 06:25:30 +00:00
Fix UMR and potential crash in Mac dump_syms.
Patch by Robert Sesek <rsesek@chromium.org> BUG=https://code.google.com/p/google-breakpad/issues/detail?id=614 R=mark@chromium.org Review URL: https://breakpad.appspot.com/9724002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1401 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
8127f56dff
commit
6690554c4b
|
@ -49,7 +49,8 @@ using google_breakpad::scoped_ptr;
|
||||||
using std::vector;
|
using std::vector;
|
||||||
|
|
||||||
struct Options {
|
struct Options {
|
||||||
Options() : srcPath(), arch(), cfi(true), handle_inter_cu_refs(true) { }
|
Options()
|
||||||
|
: srcPath(), dsymPath(), arch(), cfi(true), handle_inter_cu_refs(true) {}
|
||||||
NSString *srcPath;
|
NSString *srcPath;
|
||||||
NSString *dsymPath;
|
NSString *dsymPath;
|
||||||
const NXArchInfo *arch;
|
const NXArchInfo *arch;
|
||||||
|
|
Loading…
Reference in a new issue