potentially uninitialized variable

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5058 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2007-05-01 22:59:32 +00:00
parent a6a5dd0cd7
commit 0a4abb5c81
1 changed files with 1 additions and 1 deletions

View File

@ -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;