You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2015/01/31 00:05:37 UTC

trafficserver git commit: TS-3300: fix missing member initialization

Repository: trafficserver
Updated Branches:
  refs/heads/master 3db550fe5 -> 10a9eed13


TS-3300: fix missing member initialization

Coverity CID #1267616


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

Branch: refs/heads/master
Commit: 10a9eed135ad510eb16908285ecb0f856e97889d
Parents: 3db550f
Author: James Peach <jp...@apache.org>
Authored: Fri Jan 30 08:30:22 2015 -0800
Committer: James Peach <jp...@apache.org>
Committed: Fri Jan 30 15:05:28 2015 -0800

----------------------------------------------------------------------
 proxy/http/remap/AclFiltering.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/10a9eed1/proxy/http/remap/AclFiltering.cc
----------------------------------------------------------------------
diff --git a/proxy/http/remap/AclFiltering.cc b/proxy/http/remap/AclFiltering.cc
index ff05caa..4db4b7e 100644
--- a/proxy/http/remap/AclFiltering.cc
+++ b/proxy/http/remap/AclFiltering.cc
@@ -46,10 +46,11 @@ acl_filter_rule::reset(void)
     src_ip_array[i].reset();
   }
   src_ip_valid = 0;
+  internal = 0;
 }
 
 acl_filter_rule::acl_filter_rule():next(NULL), filter_name(NULL), allow_flag(1),
-src_ip_valid(0), active_queue_flag(0), argc(0)
+src_ip_valid(0), active_queue_flag(0), internal(0), argc(0)
 {
   standard_method_lookup.resize(HTTP_WKSIDX_METHODS_CNT);
   ink_zero(argv);