mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-03 20:00:26 +00:00
[mod_odbc_cdr] scan-build: Fix dereference of null pointer and a dead assignment.
This commit is contained in:
parent
6decc21669
commit
39453fbcdc
@ -224,7 +224,6 @@ static void write_cdr(const char *path, const char *log_line)
|
|||||||
wrote += write(fd, "\n", 1);
|
wrote += write(fd, "\n", 1);
|
||||||
wrote++;
|
wrote++;
|
||||||
close(fd);
|
close(fd);
|
||||||
fd = -1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -283,7 +282,7 @@ static switch_status_t odbc_cdr_reporting(switch_core_session_t *session)
|
|||||||
|
|
||||||
if (!table) {
|
if (!table) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_NOTICE, "Table [%s] not found, ignoring leg\n", table_name);
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_NOTICE, "Table [%s] not found, ignoring leg\n", table_name);
|
||||||
skip_leg = SWITCH_TRUE;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (table->log_leg == ODBC_CDR_LOG_A && is_b) {
|
if (table->log_leg == ODBC_CDR_LOG_A && is_b) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user