From 7dd0a31b285121ae2b4af019e7b337e5eb0427af Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Thu, 31 May 2018 14:43:02 +0200 Subject: fixed initialization of server_url (freeing non-pointer in case of redirects) diff --git a/plugins/check_curl.c b/plugins/check_curl.c index 9e13766..73b3aad 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c @@ -129,7 +129,7 @@ int invert_regex = 0; char *server_address; char *host_name; -char *server_url = DEFAULT_SERVER_URL; +char *server_url = 0; char server_ip[DEFAULT_BUFFER_SIZE]; struct curl_slist *server_ips = NULL; unsigned short server_port = HTTP_PORT; @@ -1160,6 +1160,8 @@ process_arguments (int argc, char **argv) strcpy (argv[c], "-n"); } + server_url = strdup(DEFAULT_SERVER_URL); + while (1) { c = getopt_long (argc, argv, "Vvh46t:c:w:A:k:H:P:j:T:I:a:b:d:e:p:s:R:r:u:f:C:J:K:nlLS::m:M:NE", longopts, &option); if (c == -1 || c == EOF || c == 1) -- cgit v0.10-9-g596f