svn commit: r481146 - in head/net-mgmt/monitoring-plugins: . files

Mathieu Arnold mat at FreeBSD.org
Wed Oct 3 08:10:00 UTC 2018


Author: mat
Date: Wed Oct  3 08:09:59 2018
New Revision: 481146
URL: https://svnweb.freebsd.org/changeset/ports/481146

Log:
  Fix spurious crashes.
  
  PR:		231801
  Submitted by:	madpilot

Added:
  head/net-mgmt/monitoring-plugins/files/patch-lib_utils__base.c   (contents, props changed)
Modified:
  head/net-mgmt/monitoring-plugins/Makefile   (contents, props changed)

Modified: head/net-mgmt/monitoring-plugins/Makefile
==============================================================================
--- head/net-mgmt/monitoring-plugins/Makefile	Wed Oct  3 07:41:14 2018	(r481145)
+++ head/net-mgmt/monitoring-plugins/Makefile	Wed Oct  3 08:09:59 2018	(r481146)
@@ -3,7 +3,7 @@
 
 PORTNAME=	monitoring-plugins
 PORTVERSION=	2.2
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	net-mgmt
 MASTER_SITES=	https://www.monitoring-plugins.org/download/ LOCAL/mat/${PORTNAME}
 

Added: head/net-mgmt/monitoring-plugins/files/patch-lib_utils__base.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/monitoring-plugins/files/patch-lib_utils__base.c	Wed Oct  3 08:09:59 2018	(r481146)
@@ -0,0 +1,20 @@
+--- lib/utils_base.c.orig	2016-11-29 08:45:08 UTC
++++ lib/utils_base.c
+@@ -87,10 +87,13 @@ void _get_monitoring_plugin( monitoring_
+ void
+ die (int result, const char *fmt, ...)
+ {
+-	va_list ap;
+-	va_start (ap, fmt);
+-	vprintf (fmt, ap);
+-	va_end (ap);
++	if(fmt!=NULL) {
++		va_list ap;
++		va_start (ap, fmt);
++		vprintf (fmt, ap);
++		va_end (ap);
++	}
++
+ 	if(this_monitoring_plugin!=NULL) {
+ 		np_cleanup();
+ 	}


More information about the svn-ports-head mailing list