From: Florian Forster Date: Mon, 3 Jan 2011 16:41:33 +0000 (+0100) Subject: curl_json plugin: Query the URL before trying to print it. X-Git-Tag: collectd-5.0.0~29 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=19808b4489b7e096fe4b53446f33d917f0e16438;hp=c9827c15fc557d7c9201f925f406023d660478eb curl_json plugin: Query the URL before trying to print it. This resolved a segmentation fault. --- diff --git a/src/curl_json.c b/src/curl_json.c index 442cfcf9..06119f1d 100644 --- a/src/curl_json.c +++ b/src/curl_json.c @@ -705,17 +705,19 @@ static int cj_curl_perform (cj_t *db, CURL *curl) /* {{{ */ return (-1); } + url = NULL; + curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &url); + status = curl_easy_perform (curl); if (status != 0) { ERROR ("curl_json plugin: curl_easy_perform failed with status %i: %s (%s)", - status, db->curl_errbuf, url); + status, db->curl_errbuf, (url != NULL) ? url : ""); yajl_free (db->yajl); db->yajl = yprev; return (-1); } - curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &url); curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &rc); /* The response code is zero if a non-HTTP transport was used. */