From: Alan T. DeKok Date: Fri, 26 Jun 2015 02:09:09 +0000 (-0400) Subject: Ensure debug_condition is initialized X-Git-Tag: release_3_0_9~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83780506161f2e14488657bee6eb3b3825768054;p=thirdparty%2Ffreeradius-server.git Ensure debug_condition is initialized --- diff --git a/src/main/mainconfig.c b/src/main/mainconfig.c index b9eda025092..ca2a811c116 100644 --- a/src/main/mainconfig.c +++ b/src/main/mainconfig.c @@ -41,7 +41,7 @@ RCSID("$Id$") main_config_t main_config; //!< Main server configuration. extern fr_cond_t *debug_condition; -fr_cond_t *debug_condition; //!< Condition used to mark packets up for checking. +fr_cond_t *debug_condition = NULL; //!< Condition used to mark packets up for checking. bool event_loop_started = false; //!< Whether the main event loop has been started yet. typedef struct cached_config_t {