]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Issue 9415 - No point to getting a diagnostic field if we aren't doing anything with...
authorTilghman Lesher <tilghman@meg.abyt.es>
Thu, 29 Mar 2007 16:04:46 +0000 (16:04 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Thu, 29 Mar 2007 16:04:46 +0000 (16:04 +0000)
(Plus, it tends to crash the Postgres ODBC driver.)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@59301 65c4cc65-6c06-0410-ace0-fbb531ad65f3

cdr/cdr_odbc.c

index 7a50bf21d0fa1ad4a6cecb752d72ed03105277eb..294738bfb44f9cbdea55de56efcb64558641bfdf 100644 (file)
@@ -383,7 +383,6 @@ static int odbc_do_query(void)
        if ((ODBC_res != SQL_SUCCESS) && (ODBC_res != SQL_SUCCESS_WITH_INFO)) {
                if (option_verbose > 10)
                        ast_verbose( VERBOSE_PREFIX_4 "cdr_odbc: Error in Query %d\n", ODBC_res);
-               SQLGetDiagRec(SQL_HANDLE_DBC, ODBC_con, 1, (unsigned char *)ODBC_stat, &ODBC_err, (unsigned char *)ODBC_msg, 100, &ODBC_mlen);
                SQLFreeHandle(SQL_HANDLE_STMT, ODBC_stmt);
                odbc_disconnect();
                return -1;