[llvm-branch-commits] [lldb] r270103 - Fix "thread backtrace -s": option was misparsed because of a missing break.

Francis Ricci via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Thu May 19 13:11:29 PDT 2016


Author: fjricci
Date: Thu May 19 15:11:28 2016
New Revision: 270103

URL: http://llvm.org/viewvc/llvm-project?rev=270103&view=rev
Log:
Fix "thread backtrace -s": option was misparsed because of a missing break.

<rdar://problem/24525106>

Modified:
    lldb/branches/release_38/source/Commands/CommandObjectThread.cpp

Modified: lldb/branches/release_38/source/Commands/CommandObjectThread.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/release_38/source/Commands/CommandObjectThread.cpp?rev=270103&r1=270102&r2=270103&view=diff
==============================================================================
--- lldb/branches/release_38/source/Commands/CommandObjectThread.cpp (original)
+++ lldb/branches/release_38/source/Commands/CommandObjectThread.cpp Thu May 19 15:11:28 2016
@@ -194,6 +194,7 @@ public:
                     if (!success)
                         error.SetErrorStringWithFormat("invalid integer value for option '%c'", short_option);
                 }
+                break;
                 case 'e':
                 {
                     bool success;




More information about the llvm-branch-commits mailing list