]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FSBUILD-302 Fix Windows build error - uninitialized variable
authorJeff Lenk <jeff@jefflenk.com>
Thu, 9 Sep 2010 03:47:28 +0000 (22:47 -0500)
committerJeff Lenk <jeff@jefflenk.com>
Thu, 9 Sep 2010 03:47:28 +0000 (22:47 -0500)
src/switch_core_sqldb.c

index 3a5e0bb6e2b41120bc582c2d0966c9ed598276e7..51e7661761decf4feb6a507f3e14b9f6b606f507 100644 (file)
@@ -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;