]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Don't free the environment handle when the connection fails, because other connection...
authorTilghman Lesher <tilghman@meg.abyt.es>
Tue, 7 Aug 2007 19:34:25 +0000 (19:34 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Tue, 7 Aug 2007 19:34:25 +0000 (19:34 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@78437 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_odbc.c

index c6d796f56fe82c10cdbe3f1bd663a14c084fb5ef..e523b981927f6a5f2ec50f180b53ab0e7a43f2f3 100644 (file)
@@ -483,10 +483,7 @@ static odbc_status odbc_obj_connect(struct odbc_obj *obj)
        res = SQLAllocHandle(SQL_HANDLE_DBC, obj->parent->env, &obj->con);
 
        if ((res != SQL_SUCCESS) && (res != SQL_SUCCESS_WITH_INFO)) {
-
                ast_log(LOG_WARNING, "res_odbc: Error AllocHDB %d\n", res);
-               SQLFreeHandle(SQL_HANDLE_ENV, obj->parent->env);
-
                ast_mutex_unlock(&obj->lock);
                return ODBC_FAIL;
        }