diff options
-rw-r--r-- | chrome/tools/crash_service/crash_service.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/tools/crash_service/crash_service.cc b/chrome/tools/crash_service/crash_service.cc index b71f69c..56f524b 100644 --- a/chrome/tools/crash_service/crash_service.cc +++ b/chrome/tools/crash_service/crash_service.cc @@ -195,7 +195,8 @@ bool CrashService::Initialize(const std::wstring& command_line) { return false; } - CommandLine cmd_line(command_line); + CommandLine cmd_line(L""); + cmd_line.ParseFromString(command_line); // We can override the send reports quota with a command line switch. if (cmd_line.HasSwitch(kMaxReports)) |