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:
mark@chromium.org 2014-11-05 17:40:47 +00:00
parent 8127f56dff
commit 6690554c4b

View File

@ -49,7 +49,8 @@ using google_breakpad::scoped_ptr;
using std::vector;
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 *dsymPath;
const NXArchInfo *arch;