commit | 26e089bf5310f8378e7d86b9f38db32a38e76411 | [log] [tgz] |
---|---|---|
author | Jim Ingham <jingham@apple.com> | Tue Nov 29 21:21:26 2011 +0000 |
committer | Jim Ingham <jingham@apple.com> | Tue Nov 29 21:21:26 2011 +0000 |
tree | 6264b6deafc52678a7ee57dd170c63af53d1f471 | |
parent | d8ff83518468f3c81f9e5115d0dcd0b249413cf1 [diff] [blame] |
Missing return in error handling for "source list". git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@145435 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectSource.cpp b/source/Commands/CommandObjectSource.cpp index 9623ebc..07e133c 100644 --- a/source/Commands/CommandObjectSource.cpp +++ b/source/Commands/CommandObjectSource.cpp
@@ -277,6 +277,7 @@ { result.AppendErrorWithFormat("'%s' takes no arguments, only flags.\n", GetCommandName()); result.SetStatus (eReturnStatusFailed); + return false; } ExecutionContext exe_ctx(m_interpreter.GetExecutionContext());