From: Paul Cadach Date: Tue, 30 Jan 2007 09:10:09 +0000 (+0000) Subject: Merged revisions 52808 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~3332 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b2aa1a68e68c6ed54fe7c6bf15cd54502f9bff53;p=thirdparty%2Fasterisk.git Merged revisions 52808 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r52808 | pcadach | 2007-01-30 00:34:26 -0800 (Втр, 30 Янв 2007) | 1 line Don't play with free()'d pointers ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@52819 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_odbc.c b/res/res_odbc.c index 9ee3b8fc94..6f9f8a2df6 100644 --- a/res/res_odbc.c +++ b/res/res_odbc.c @@ -363,7 +363,8 @@ static int odbc_register_class(struct odbc_class *class, int connect) if (connect) { /* Request and release builds a connection */ obj = ast_odbc_request_obj(class->name, 0); - ast_odbc_release_obj(obj); + if (obj) + ast_odbc_release_obj(obj); } return 0; @@ -434,9 +435,10 @@ struct odbc_obj *ast_odbc_request_obj(const char *name, int check) ast_mutex_init(&obj->lock); obj->parent = class; if (odbc_obj_connect(obj) == ODBC_FAIL) { - ast_log(LOG_WARNING, "Failed to connect\n"); + ast_log(LOG_WARNING, "Failed to connect to %s\n", name); ast_mutex_destroy(&obj->lock); free(obj); + obj = NULL; } else { AST_LIST_INSERT_HEAD(&class->odbc_obj, obj, list); }