From 220abd3444cb9d675334d9769c3d05279ccf1404 Mon Sep 17 00:00:00 2001 From: brectanus Date: Thu, 24 May 2007 21:56:34 +0000 Subject: [PATCH] Quiet uninitialized warning. --- apache2/re.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache2/re.c b/apache2/re.c index 18d55dfb..575a607b 100644 --- a/apache2/re.c +++ b/apache2/re.c @@ -1175,7 +1175,7 @@ static void msre_perform_disruptive_actions(modsec_rec *msr, msre_rule *rule, static int execute_operator(msre_var *var, msre_rule *rule, modsec_rec *msr, msre_actionset *acting_actionset, apr_pool_t *mptmp) { - apr_time_t time_before_regex; + apr_time_t time_before_regex = 0; char *my_error_msg = NULL; const char *full_varname = NULL; int rc;