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());