From dd2fe7adb548e8d38e4a685287099ab79ca004be Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Fri, 28 Jan 2011 02:23:12 +0000 Subject: Fix a little thinko in sending down the thread name to SetName. llvm-svn: 124464 --- lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp') diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index ee6e3aed14b..afaf3744c0e 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -1095,7 +1095,7 @@ ProcessGDBRemote::SetThreadStopInfo (StringExtractor& stop_packet) ThreadGDBRemote *gdb_thread = static_cast (thread_sp.get()); gdb_thread->SetThreadDispatchQAddr (thread_dispatch_qaddr); - gdb_thread->SetName (thread_name.empty() ? thread_name.c_str() : NULL); + gdb_thread->SetName (thread_name.empty() ? NULL : thread_name.c_str()); if (exc_type != 0) { const size_t exc_data_size = exc_data.size(); -- cgit v1.2.3