From: Jeff Lenk Date: Thu, 9 Sep 2010 03:47:28 +0000 (-0500) Subject: FSBUILD-302 Fix Windows build error - uninitialized variable X-Git-Tag: v1.2-rc1~361 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2befa393a63df5fa35af1f089eab7c404a4d6490;p=thirdparty%2Ffreeswitch.git FSBUILD-302 Fix Windows build error - uninitialized variable --- diff --git a/src/switch_core_sqldb.c b/src/switch_core_sqldb.c index 3a5e0bb6e2..51e7661761 100644 --- a/src/switch_core_sqldb.c +++ b/src/switch_core_sqldb.c @@ -850,7 +850,7 @@ SWITCH_DECLARE(switch_bool_t) switch_cache_db_test_reactive(switch_cache_db_hand static void *SWITCH_THREAD_FUNC switch_core_sql_thread(switch_thread_t *thread, void *obj) { - void *pop; + void *pop = NULL; uint32_t itterations = 0; uint8_t trans = 0, nothing_in_queue = 0; uint32_t target = 100000;