Repository: trafficserver Updated Branches: refs/heads/master 5f33c2db7 -> bc918476c
Init port in the constructor Cleanup for coverity: TS-3725 Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/bc918476 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/bc918476 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/bc918476 Branch: refs/heads/master Commit: bc918476c9044fced87e38e3fe037b486535048a Parents: 5f33c2d Author: Thomas Jackson <[email protected]> Authored: Tue Jul 7 09:57:12 2015 -0700 Committer: Thomas Jackson <[email protected]> Committed: Tue Jul 7 09:58:50 2015 -0700 ---------------------------------------------------------------------- iocore/hostdb/HostDB.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/bc918476/iocore/hostdb/HostDB.cc ---------------------------------------------------------------------- diff --git a/iocore/hostdb/HostDB.cc b/iocore/hostdb/HostDB.cc index 037c437..25628e8 100644 --- a/iocore/hostdb/HostDB.cc +++ b/iocore/hostdb/HostDB.cc @@ -2388,7 +2388,7 @@ struct ShowHostDB : public ShowCont { } - ShowHostDB(Continuation *c, HTTPHdr *h) : ShowCont(c, h), name(0), force(0) + ShowHostDB(Continuation *c, HTTPHdr *h) : ShowCont(c, h), name(0), force(0), port(0) { ats_ip_invalidate(&ip); SET_HANDLER(&ShowHostDB::showMain);
