svn commit: r338492 - head/net-mgmt/collectd5/files

Dmitry Sivachenko demon at FreeBSD.org
Thu Jan 2 20:28:46 UTC 2014


Author: demon
Date: Thu Jan  2 20:28:45 2014
New Revision: 338492
URL: http://svnweb.freebsd.org/changeset/ports/338492

Log:
  Fix build with clang (on FreeBSD-10) with curl plugin enabled:
  
  curl_xml.c:617:37: error: variable 'url' is uninitialized when used here
        [-Werror,-Wuninitialized]
             status, db->curl_errbuf, url);
                                      ^~~
  ./plugin.h:342:47: note: expanded from macro 'ERROR'
  #define ERROR(...)   plugin_log (LOG_ERR,     __VA_ARGS__)
                                                ^
  curl_xml.c:610:12: note: initialize the variable 'url' to silence this warning
    char *url;
             ^
              = NULL
  1 error generated.

Added:
  head/net-mgmt/collectd5/files/patch-src-curl_xml.c   (contents, props changed)

Added: head/net-mgmt/collectd5/files/patch-src-curl_xml.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/collectd5/files/patch-src-curl_xml.c	Thu Jan  2 20:28:45 2014	(r338492)
@@ -0,0 +1,11 @@
+--- src/curl_xml.c.orig	2013-08-18 14:24:25.069973000 +0400
++++ src/curl_xml.c	2014-01-03 00:25:17.000000000 +0400
+@@ -607,7 +607,7 @@
+   int status;
+   long rc;
+   char *ptr;
+-  char *url;
++  char *url = NULL;
+ 
+   db->buffer_fill = 0; 
+   status = curl_easy_perform (curl);


More information about the svn-ports-all mailing list