From 0a4abb5c811fab8c424b93330a846bd117c56cb0 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Tue, 1 May 2007 22:59:32 +0000 Subject: [PATCH] potentially uninitialized variable git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5058 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_odbc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_odbc.c b/src/switch_odbc.c index 127362b3d1..7bee2763bc 100644 --- a/src/switch_odbc.c +++ b/src/switch_odbc.c @@ -168,7 +168,7 @@ SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_connect(switch_odbc_hand static int db_is_up(switch_odbc_handle_t *handle) { int ret = 0; - SQLHSTMT stmt; + SQLHSTMT stmt = NULL; SQLINTEGER m = 0; int result; switch_event_t *event;