You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by su...@apache.org on 2015/02/19 16:08:37 UTC

trafficserver git commit: [TS-3294]: Fix uninitalized scalar variable defect

Repository: trafficserver
Updated Branches:
  refs/heads/master 4b656da0c -> cfcfc6d67


[TS-3294]: Fix uninitalized scalar variable defect

Coverity CID#1270927


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

Branch: refs/heads/master
Commit: cfcfc6d67e17d13aaecd625c3a73f49d87b7f482
Parents: 4b656da
Author: Sudheer Vinukonda <su...@yahoo-inc.com>
Authored: Thu Feb 19 15:07:32 2015 +0000
Committer: Sudheer Vinukonda <su...@yahoo-inc.com>
Committed: Thu Feb 19 15:07:32 2015 +0000

----------------------------------------------------------------------
 proxy/Update.cc | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/cfcfc6d6/proxy/Update.cc
----------------------------------------------------------------------
diff --git a/proxy/Update.cc b/proxy/Update.cc
index 822b9e0..6e62ae1 100644
--- a/proxy/Update.cc
+++ b/proxy/Update.cc
@@ -229,6 +229,7 @@ _http_hdr(0),
 _offset_hour(0), _interval(0), _max_depth(0), _start_time(0), _expired(0), _scheme_index(-1), _update_event_status(0)
 {
   http_parser_init(&_http_parser);
+  _http_parser.m_allow_non_http = true;
 }
 
 UpdateEntry::~UpdateEntry()