mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
Fix coverity UNUSED_VALUE findings in core support level files
Most of these were just saving returned values without using them and in some cases the variable being saved to could be removed as well. (issue ASTERISK-19672) ........ Merged revisions 368738 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 368739 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@368751 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1628,7 +1628,7 @@ static int acf_transaction_write(struct ast_channel *chan, const char *cmd, char
|
||||
pbx_builtin_setvar_helper(chan, "ODBC_RESULT", "INVALID_DB");
|
||||
return -1;
|
||||
}
|
||||
if (!(tx = find_transaction(chan, obj, value, 0))) {
|
||||
if (!find_transaction(chan, obj, value, 0)) {
|
||||
pbx_builtin_setvar_helper(chan, "ODBC_RESULT", "FAILED_TO_CREATE");
|
||||
return -1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user