[Spice-devel] [PATCH 7/9] client: gcc 4.6.0: two more unused variable fixes

Alon Levy alevy at redhat.com
Tue Jan 25 07:34:03 PST 2011


---
 client/hot_keys.cpp   |    2 --
 client/red_client.cpp |    1 -
 2 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/client/hot_keys.cpp b/client/hot_keys.cpp
index 60b58a4..053f499 100644
--- a/client/hot_keys.cpp
+++ b/client/hot_keys.cpp
@@ -135,8 +135,6 @@ void HotKeysParser::add_hotkey(const std::string& hotkey, const CommandsMap& com
     }
     std::string command_name = hotkey.substr(0, key_start);
 
-    CommandsMap::const_iterator command = commands_map.find(command_name);
-
     if (commands_map.find(command_name) == commands_map.end()) {
         char buf[1000];
         sprintf(buf, "invalid action bname %s", command_name.c_str());
diff --git a/client/red_client.cpp b/client/red_client.cpp
index c632a21..1810593 100644
--- a/client/red_client.cpp
+++ b/client/red_client.cpp
@@ -464,7 +464,6 @@ void RedClient::on_disconnect()
 void RedClient::delete_channels()
 {
     Lock lock(_channels_lock);
-    Channels::iterator iter = _channels.begin();
     while (!_channels.empty()) {
         RedChannel *channel = *_channels.begin();
         _channels.pop_front();
-- 
1.7.3.5



More information about the Spice-devel mailing list