aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ton Voon <tonvoon@users.sourceforge.net> 2003-02-21 21:59:17 +0000
committerGravatar Ton Voon <tonvoon@users.sourceforge.net> 2003-02-21 21:59:17 +0000
commit2efb3099a54cac2c26fa925b430df80ace19d7de (patch)
tree89bb2277a834e052a29005305316bf7c9092c274
parent782bc207d5697f539beb1fd3359ce81d22e26a54 (diff)
downloadmonitoring-plugins-2efb3099a54cac2c26fa925b430df80ace19d7de.tar.gz
Fixed coredump with unallocated string
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@351 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--plugins/check_http.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c
index 8ffbf989..856acdea 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -203,8 +203,8 @@ char server_port_text[6] = "";
char server_type[6] = "http";
char *server_address = "";
char *host_name = "";
-char *server_url = HTTP_URL;
-int server_url_length = 1;
+char *server_url = "";
+int server_url_length;
int server_expect_yn = 0;
char server_expect[MAX_INPUT_BUFFER] = HTTP_EXPECT;
char string_expect[MAX_INPUT_BUFFER] = "";
@@ -235,6 +235,10 @@ main (int argc, char **argv)
{
int result = STATE_UNKNOWN;
+ /* Set default URL. Must be malloced for subsequent realloc if --onredirect=follow */
+ asprintf (&server_url, "%s", HTTP_URL);
+ server_url_length = strlen(server_url);
+
if (process_arguments (argc, argv) == ERROR)
usage ("check_http: could not parse arguments\n");