You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by so...@apache.org on 2016/05/31 13:46:03 UTC

[trafficserver] 02/02: TS-3123: Missing break statement and failing clang-analyzer

This is an automated email from the ASF dual-hosted git repository.

sorber pushed a commit to branch 6.2.x
in repository https://git-dual.apache.org/repos/asf/trafficserver.git

commit 65734ed4e69bd259e2c8273823951064b911bc98
Author: Bryan Call <bc...@apache.org>
AuthorDate: Mon May 23 16:29:08 2016 -0700

    TS-3123: Missing break statement and failing clang-analyzer
    
    (cherry picked from commit f38eb6419574fdad4f1bd3e3bb082d2da296d5a9)
---
 proxy/InkAPI.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/proxy/InkAPI.cc b/proxy/InkAPI.cc
index 55784bb..2a464d3 100644
--- a/proxy/InkAPI.cc
+++ b/proxy/InkAPI.cc
@@ -7974,6 +7974,7 @@ _conf_to_memberp(TSOverridableConfigKey conf, OverridableHttpConfigParams *overr
   case TS_CONFIG_HTTP_PARENT_PROXY_TOTAL_CONNECT_ATTEMPTS:
     typ = OVERRIDABLE_TYPE_INT;
     ret = &overridableHttpConfig->parent_connect_attempts;
+    break;
   case TS_CONFIG_HTTP_TRANSACTION_ACTIVE_TIMEOUT_IN:
     typ = OVERRIDABLE_TYPE_INT;
     ret = &overridableHttpConfig->transaction_active_timeout_in;

-- 
To stop receiving notification emails like this one, please contact
"commits@trafficserver.apache.org" <co...@trafficserver.apache.org>.