From 2befa393a63df5fa35af1f089eab7c404a4d6490 Mon Sep 17 00:00:00 2001 From: Jeff Lenk Date: Wed, 8 Sep 2010 22:47:28 -0500 Subject: [PATCH] FSBUILD-302 Fix Windows build error - uninitialized variable --- src/switch_core_sqldb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;