View | Details | Raw Unified | Return to bug 231127
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	trafficserver
4
PORTNAME=	trafficserver
5
PORTVERSION=	6.2.0
5
PORTVERSION=	6.2.3
6
CATEGORIES=	www
6
CATEGORIES=	www
7
MASTER_SITES=	APACHE/${PORTNAME}
7
MASTER_SITES=	APACHE/${PORTNAME}
8
8
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1472401430
1
TIMESTAMP = 1536003051
2
SHA256 (trafficserver-6.2.0.tar.bz2) = bd5e8c178d02957b89a81d1e428ee50bcca0831a6917f32408915c56f486fd85
2
SHA256 (trafficserver-6.2.3.tar.bz2) = 333875815e62cecda480b0626f72c7d5a730544d92a80aef6dcccdad6216190d
3
SIZE (trafficserver-6.2.0.tar.bz2) = 8437286
3
SIZE (trafficserver-6.2.3.tar.bz2) = 8433443
(-)files/patch-cmd_traffic__manager_MgmtHandlers.cc (-11 lines)
Lines 1-11 Link Here
1
--- cmd/traffic_manager/MgmtHandlers.cc.orig	2016-07-11 23:03:32 UTC
2
+++ cmd/traffic_manager/MgmtHandlers.cc
3
@@ -268,7 +268,7 @@ mgmt_synthetic_main(void *)
4
     } else {
5
       ink_thread thrId = ink_thread_create(synthetic_thread, (void *)&clientFD, 1);
6
 
7
-      if (thrId <= 0) {
8
+      if (thrId == 0) {
9
         mgmt_log(stderr, "[SyntheticHealthServer] Failed to create worker thread");
10
       }
11
     }
(-)files/patch-iocore_cluster_ClusterCache.cc (-20 lines)
Lines 1-20 Link Here
1
--- iocore/cluster/ClusterCache.cc.orig	2016-07-11 23:03:32 UTC
2
+++ iocore/cluster/ClusterCache.cc
3
@@ -437,7 +437,7 @@ CacheContinuation::do_op(Continuation *c
4
   }
5
   case CACHE_OPEN_WRITE:
6
   case CACHE_OPEN_READ: {
7
-    ink_release_assert(c > 0);
8
+    ink_release_assert(c);
9
     //////////////////////
10
     // Use short format //
11
     //////////////////////
12
@@ -500,7 +500,7 @@ CacheContinuation::do_op(Continuation *c
13
 
14
   case CACHE_OPEN_READ_LONG:
15
   case CACHE_OPEN_WRITE_LONG: {
16
-    ink_release_assert(c > 0);
17
+    ink_release_assert(c);
18
     //////////////////////
19
     // Use long format  //
20
     //////////////////////
(-)files/patch-mgmt_utils_MgmtSocket.cc (-11 lines)
Lines 1-11 Link Here
1
--- mgmt/utils/MgmtSocket.cc.orig	2016-07-11 23:03:32 UTC
2
+++ mgmt/utils/MgmtSocket.cc
3
@@ -89,7 +89,7 @@ mgmt_fopen(const char *filename, const c
4
     // no leak here as f will be returned if it is > 0
5
     // coverity[overwrite_var]
6
     f = ::fopen(filename, mode);
7
-    if (f > 0)
8
+    if (f)
9
       return f;
10
     if (!mgmt_transient_error())
11
       break;
(-)files/patch-proxy_Main.cc (-11 lines)
Lines 1-11 Link Here
1
--- proxy/Main.cc.orig	2016-07-11 23:03:32 UTC
2
+++ proxy/Main.cc
3
@@ -539,7 +539,7 @@ cmd_list(char * /* cmd ATS_UNUSED */)
4
 
5
   Note("Cache Storage:");
6
   Store tStore;
7
-  if (tStore.read_config() < 0) {
8
+  if (tStore.read_config() != NULL) {
9
     Note("config read failure");
10
     return CMD_FAILED;
11
   } else {
(-)files/patch-proxy_http_remap_RemapPluginInfo.cc (-11 lines)
Lines 1-11 Link Here
1
--- proxy/http/remap/RemapPluginInfo.cc.orig	2016-07-11 23:03:32 UTC
2
+++ proxy/http/remap/RemapPluginInfo.cc
3
@@ -39,7 +39,7 @@ remap_plugin_info::remap_plugin_info(cha
4
 {
5
   // coverity did not see ats_free
6
   // coverity[ctor_dtor_leak]
7
-  if (_path && likely((path = ats_strdup(_path)) > 0))
8
+  if (_path && likely((path = ats_strdup(_path)) != NULL))
9
     path_size = strlen(path);
10
 }
11
 

Return to bug 231127