mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-04-24 15:53:05 -04:00
fixed initialization of server_url (freeing non-pointer in case of redirects)
This commit is contained in:
parent
5368e24616
commit
7dd0a31b28
1 changed files with 3 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue