diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index f7a571d..414acfb 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -2132,6 +2132,7 @@ public: break; } case 'J': { + m_dumper_options.json = true; m_dumper_options.pretty_print_json = true; break; } @@ -2198,8 +2199,7 @@ protected: llvm::Optional<StreamFile> out_file; if (m_options.m_output_file) { out_file.emplace(m_options.m_output_file->GetPath().c_str(), - File::eOpenOptionWriteOnly | File::eOpenOptionCanCreate, - lldb::eFilePermissionsFileDefault); + File::eOpenOptionWriteOnly | File::eOpenOptionCanCreate); } m_options.m_dumper_options.forwards = true; @@ -2395,8 +2395,7 @@ protected: llvm::Optional<StreamFile> out_file; if (m_options.m_output_file) { out_file.emplace(m_options.m_output_file->GetPath().c_str(), - File::eOpenOptionWriteOnly | File::eOpenOptionCanCreate, - lldb::eFilePermissionsFileDefault); + File::eOpenOptionWriteOnly | File::eOpenOptionCanCreate); } if (m_options.m_continue && !m_last_id) { |