From: Tilghman Lesher Date: Wed, 15 Oct 2008 17:16:00 +0000 (+0000) Subject: Only set buf to blank before the goto. X-Git-Tag: 1.6.2.0-beta1~1102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8460fd9bfd8c235e7dc9bbb9d123714d0dc83e31;p=thirdparty%2Fasterisk.git Only set buf to blank before the goto. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@149640 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/funcs/func_odbc.c b/funcs/func_odbc.c index 37b27d59ba..2a45933909 100644 --- a/funcs/func_odbc.c +++ b/funcs/func_odbc.c @@ -452,6 +452,7 @@ static int acf_odbc_read(struct ast_channel *chan, const char *cmd, char *s, cha if ((res != SQL_SUCCESS) && (res != SQL_SUCCESS_WITH_INFO)) { ast_log(LOG_WARNING, "SQL Get Data error!\n[%s]\n\n", sql->str); y = -1; + buf[0] = '\0'; goto end_acf_read; } @@ -520,8 +521,6 @@ end_acf_read: } odbc_store->data = resultset; ast_channel_datastore_add(chan, odbc_store); - } else { - buf[0] = '\0'; } SQLCloseCursor(stmt); SQLFreeHandle(SQL_HANDLE_STMT, stmt);