]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Oops, should have checked for a NULL obj, here, too
authorTilghman Lesher <tilghman@meg.abyt.es>
Wed, 23 Jan 2008 04:20:15 +0000 (04:20 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Wed, 23 Jan 2008 04:20:15 +0000 (04:20 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@99775 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_odbc.c

index 7156341b461b90a663917cccebb42db48ea24e0c..29e30233054f89f02fbb045ea8a7408939af985a 100644 (file)
@@ -473,7 +473,7 @@ struct odbc_obj *ast_odbc_request_obj(const char *name, int check)
 
        if (obj && check) {
                ast_odbc_sanity_check(obj);
-       } else if (obj->parent->idlecheck > 0 && ast_tvdiff_ms(ast_tvnow(), obj->last_used) / 1000 > obj->parent->idlecheck)
+       } else if (obj && obj->parent->idlecheck > 0 && ast_tvdiff_ms(ast_tvnow(), obj->last_used) / 1000 > obj->parent->idlecheck)
                odbc_obj_connect(obj);
 
        return obj;