diff options
| author | Greg Clayton <gclayton@apple.com> | 2012-07-17 03:23:13 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2012-07-17 03:23:13 +0000 |
| commit | 23f59509a8790b04c691ec063c55724a3bfee7eb (patch) | |
| tree | 9bd1537b53423b7a43ccd4b9bceb178960bbbb02 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | |
| parent | 24a8378c4f5ab46f9156e8c271500a6e051c2fd4 (diff) | |
| download | bcm5719-llvm-23f59509a8790b04c691ec063c55724a3bfee7eb.tar.gz bcm5719-llvm-23f59509a8790b04c691ec063c55724a3bfee7eb.zip | |
Ran the static analyzer on the codebase and found a few things.
llvm-svn: 160338
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp')
| -rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp index 4fac83d334c..180c1f3a5ef 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp @@ -1824,13 +1824,13 @@ GDBRemoteCommunicationClient::LaunchGDBserverAndGetPort () std::string name; std::string value; uint16_t port = 0; - lldb::pid_t pid = LLDB_INVALID_PROCESS_ID; + //lldb::pid_t pid = LLDB_INVALID_PROCESS_ID; while (response.GetNameColonValue(name, value)) { if (name.size() == 4 && name.compare("port") == 0) port = Args::StringToUInt32(value.c_str(), 0, 0); - if (name.size() == 3 && name.compare("pid") == 0) - pid = Args::StringToUInt32(value.c_str(), LLDB_INVALID_PROCESS_ID, 0); +// if (name.size() == 3 && name.compare("pid") == 0) +// pid = Args::StringToUInt32(value.c_str(), LLDB_INVALID_PROCESS_ID, 0); } return port; } |

