summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2007-08-13 21:44:22 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2007-08-13 21:44:22 +0000
commitc41121cdbbd7a205619707370ed429416cdd2cc9 (patch)
treed6d5552e22de495a3d52bfb8593298950dd40608
parente05da8e94896b19ff4a23bcd334d28410856ae6f (diff)
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
-rw-r--r--res/res_odbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_odbc.c b/res/res_odbc.c
index d688930c1..6b70f16f6 100644
--- a/res/res_odbc.c
+++ b/res/res_odbc.c
@@ -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) {