Only use the sanitysql if it's not zero-len

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@79333 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2007-08-13 21:44:22 +00:00
parent e05da8e948
commit c41121cdbb

View File

@@ -176,7 +176,7 @@ int ast_odbc_sanity_check(struct odbc_obj *obj)
SQLHSTMT stmt;
int res = 0;
if (obj->parent->sanitysql)
if (!ast_strlen_zero(obj->parent->sanitysql))
test_sql = obj->parent->sanitysql;
if (obj->up) {