You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bc...@apache.org on 2015/07/10 23:45:40 UTC

trafficserver git commit: TS-3313: Added active queue for incoming connections Fixed clang analyzer issue Noticed local scoped variable with the same name as a member

Repository: trafficserver
Updated Branches:
  refs/heads/master 9a11943fb -> 763b8562c


TS-3313: Added active queue for incoming connections
Fixed clang analyzer issue
Noticed local scoped variable with the same name as a member


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/763b8562
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/763b8562
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/763b8562

Branch: refs/heads/master
Commit: 763b8562c1cd5abcf62c9566f27d20830afaaea8
Parents: 9a11943
Author: Bryan Call <bc...@apache.org>
Authored: Fri Jul 10 14:41:56 2015 -0700
Committer: Bryan Call <bc...@apache.org>
Committed: Fri Jul 10 14:41:56 2015 -0700

----------------------------------------------------------------------
 iocore/net/UnixNetVConnection.cc | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/763b8562/iocore/net/UnixNetVConnection.cc
----------------------------------------------------------------------
diff --git a/iocore/net/UnixNetVConnection.cc b/iocore/net/UnixNetVConnection.cc
index 2758ecf..ecfd3bf 100644
--- a/iocore/net/UnixNetVConnection.cc
+++ b/iocore/net/UnixNetVConnection.cc
@@ -1132,8 +1132,7 @@ UnixNetVConnection::mainEvent(int event, Event *e)
   Event **signal_timeout;
   Continuation *reader_cont = NULL;
   Continuation *writer_cont = NULL;
-  ink_hrtime next_activity_timeout_at = 0;
-  ink_hrtime *signal_timeout_at = &next_activity_timeout_at;
+  ink_hrtime *signal_timeout_at = NULL;
   Event *t = NULL;
   signal_timeout = &t;