X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fcurl_json.c;h=06119f1d2315e436a1fdc375c01e98bd25f21f34;hp=442cfcf97e36375b7b6fcc1b066fc00181dee12c;hb=19808b4489b7e096fe4b53446f33d917f0e16438;hpb=c9827c15fc557d7c9201f925f406023d660478eb 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. */