summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Burchell <viroteck@viroteck.net>2012-04-14 14:56:47 -0700
committerRobin Burchell <viroteck@viroteck.net>2012-04-14 14:56:47 -0700
commit207c6c290e5b752d562fdc0b121379d511a3dce8 (patch)
tree7ee913c0a90c11e641b034b65083f0b5d770f9aa
parent2f8303334f2c5a62bcce47d39e8cf41208a9a296 (diff)
parent86434e0d4b1b8f0a0a506ddf6561629d110e61c8 (diff)
Merge pull request #53 from SaberUK/clang-analyze
[2.0] Fix unused variables reported by the clang static analyzer.
-rw-r--r--src/channels.cpp1
-rw-r--r--src/modules/m_spanningtree/fjoin.cpp1
-rw-r--r--src/server.cpp1
3 files changed, 0 insertions, 3 deletions
diff --git a/src/channels.cpp b/src/channels.cpp
index 8e7d4af06..0b8945aca 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -804,7 +804,6 @@ void Channel::UserList(User *user)
dlen = curlen = snprintf(list,MAXBUF,"%s %c %s :", user->nick.c_str(), this->IsModeSet('s') ? '@' : this->IsModeSet('p') ? '*' : '=', this->name.c_str());
ptr = list + dlen;
- ptrlen = 0;
numusers = 0;
}
diff --git a/src/modules/m_spanningtree/fjoin.cpp b/src/modules/m_spanningtree/fjoin.cpp
index ea217b398..8846b2fbc 100644
--- a/src/modules/m_spanningtree/fjoin.cpp
+++ b/src/modules/m_spanningtree/fjoin.cpp
@@ -93,7 +93,6 @@ CmdResult CommandFJoin::Handle(const std::vector<std::string>& params, User *src
parameterlist param_list;
if (Utils->AnnounceTSChange)
chan->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :TS for %s changed from %lu to %lu", chan->name.c_str(), channel.c_str(), (unsigned long) ourTS, (unsigned long) TS);
- ourTS = TS;
// while the name is equal in case-insensitive compare, it might differ in case; use the remote version
chan->name = channel;
chan->age = TS;
diff --git a/src/server.cpp b/src/server.cpp
index 91b911ff2..cba395ebe 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -100,7 +100,6 @@ void InspIRCd::IncrementUID(int pos)
for (int i = 3; i < (UUID_LENGTH - 1); i++)
{
current_uid[i] = 'A';
- pos = UUID_LENGTH - 1;
}
}
else