提交 5aba96e3 authored 作者: Anthony Minessale's avatar Anthony Minessale

FS-2910

上级 14113f23
...@@ -160,11 +160,6 @@ static int db_is_up(switch_odbc_handle_t *handle) ...@@ -160,11 +160,6 @@ static int db_is_up(switch_odbc_handle_t *handle)
strcpy((char *) sql, "select 1"); strcpy((char *) sql, "select 1");
} }
if (stmt) {
SQLFreeHandle(SQL_HANDLE_STMT, stmt);
stmt = NULL;
}
if (SQLAllocHandle(SQL_HANDLE_STMT, handle->con, &stmt) != SQL_SUCCESS) { if (SQLAllocHandle(SQL_HANDLE_STMT, handle->con, &stmt) != SQL_SUCCESS) {
code = __LINE__; code = __LINE__;
goto error; goto error;
...@@ -229,6 +224,11 @@ static int db_is_up(switch_odbc_handle_t *handle) ...@@ -229,6 +224,11 @@ static int db_is_up(switch_odbc_handle_t *handle)
goto done; goto done;
} }
if (stmt) {
SQLFreeHandle(SQL_HANDLE_STMT, stmt);
stmt = NULL;
}
switch_safe_free(err_str); switch_safe_free(err_str);
switch_yield(1000000); switch_yield(1000000);
goto top; goto top;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论