From: Florian Forster Date: Sun, 26 May 2013 15:22:48 +0000 (+0200) Subject: curl plugin: Fix compile issue (long vs. long*). X-Git-Tag: collectd-5.4.0~31^2~4 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ffbbccd2f0416e5a10f13410722d35c34be8c23f;p=collectd.git curl plugin: Fix compile issue (long vs. long*). --- diff --git a/src/curl.c b/src/curl.c index 3e5c578e..808603d5 100644 --- a/src/curl.c +++ b/src/curl.c @@ -676,7 +676,7 @@ static int cc_read_page (web_page_t *wp) /* {{{ */ if(wp->response_code) { - long *response_code; + long response_code = 0; status = curl_easy_getinfo(wp->curl, CURLINFO_RESPONSE_CODE, &response_code); if(status != CURLE_OK) { ERROR ("curl plugin: curl_easy_getinfo failed with staus %i: %s",