fixed initialization of server_url (freeing non-pointer in case of redirects)

This commit is contained in:
Andreas Baumann 2018-05-31 14:43:02 +02:00 committed by Sven Nierlein
parent 5368e24616
commit 7dd0a31b28

View file

@ -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)