diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectMemory.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectMemory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp index 767b472904e..3020c01de81 100644 --- a/lldb/source/Commands/CommandObjectMemory.cpp +++ b/lldb/source/Commands/CommandObjectMemory.cpp @@ -143,7 +143,7 @@ public: break; case 'o': - m_outfile_filespec.SetFile (option_arg); + m_outfile_filespec.SetFile (option_arg, true); break; case 'b': @@ -462,7 +462,7 @@ public: break; case 'i': - m_infile.SetFile (option_arg); + m_infile.SetFile (option_arg, true); if (!m_infile.Exists()) { m_infile.Clear(); |