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

bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 583f090  Fixed unmatched brace issue from clang-tidy
583f090 is described below

commit 583f09018fd51561f0684c7de75219cc0b26e6d7
Author: Bryan Call <bc...@apache.org>
AuthorDate: Wed Apr 11 14:21:17 2018 -0700

    Fixed unmatched brace issue from clang-tidy
---
 plugins/experimental/tls_bridge/regex.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/experimental/tls_bridge/regex.cc 
b/plugins/experimental/tls_bridge/regex.cc
index 2a4558f..c7405f5 100644
--- a/plugins/experimental/tls_bridge/regex.cc
+++ b/plugins/experimental/tls_bridge/regex.cc
@@ -120,10 +120,10 @@ Regex::~Regex()
   if (regex_extra) {
 #ifdef PCRE_CONFIG_JIT
     pcre_free_study(regex_extra);
-  }
 #else
     pcre_free(regex_extra);
 #endif
+  }
   if (regex) {
     pcre_free(regex);
   }

-- 
To stop receiving notification emails like this one, please contact
bc...@apache.org.

Reply via email to