From d4a781817cbe1c6168e0687aea968b7a6f348abe Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Tue, 10 Sep 2013 20:52:13 +0200 Subject: Fix GCC's -Wuninitialized warnings Fix the issues found by GCC when the -Wuninitialized flag is specified. --- plugins/check_http.c | 24 ++++++++++++------------ plugins/check_procs.c | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) (limited to 'plugins') diff --git a/plugins/check_http.c b/plugins/check_http.c index c44bb3ac..ecd832f8 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -855,18 +855,18 @@ check_http (void) char *full_page_new; char *buf; char *pos; - long microsec; - double elapsed_time; - long microsec_connect; - double elapsed_time_connect; - long microsec_ssl; - double elapsed_time_ssl; - long microsec_firstbyte; - double elapsed_time_firstbyte; - long microsec_headers; - double elapsed_time_headers; - long microsec_transfer; - double elapsed_time_transfer; + long microsec = 0L; + double elapsed_time = 0.0; + long microsec_connect = 0L; + double elapsed_time_connect = 0.0; + long microsec_ssl = 0L; + double elapsed_time_ssl = 0.0; + long microsec_firstbyte = 0L; + double elapsed_time_firstbyte = 0.0; + long microsec_headers = 0L; + double elapsed_time_headers = 0.0; + long microsec_transfer = 0L; + double elapsed_time_transfer = 0.0; int page_len = 0; int result = STATE_OK; diff --git a/plugins/check_procs.c b/plugins/check_procs.c index d09bd8b6..d20b027f 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c @@ -150,7 +150,7 @@ main (int argc, char **argv) int crit = 0; /* number of processes in crit state */ int i = 0, j = 0; int result = STATE_UNKNOWN; - int ret; + int ret = 0; output chld_out, chld_err; setlocale (LC_ALL, ""); -- cgit v1.2.3-74-g34f1