Merge pull request #475 from dragos-oancea/mod_skinny_vals-never-read

[mod_skinny] scan-build: Dead assignments
This commit is contained in:
Andrey Volk 2020-03-12 19:28:06 +04:00 committed by GitHub
commit abe3aea117
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 7 deletions

View File

@ -1426,12 +1426,6 @@ done:
switch_status_t channel_receive_event(switch_core_session_t *session, switch_event_t *event)
{
char *body = switch_event_get_body(event);
if (!body) {
body = "";
}
return SWITCH_STATUS_SUCCESS;
}
@ -2480,7 +2474,7 @@ static void skinny_user_to_device_event_handler(switch_event_t *event)
uint32_t line_instance = atoi(switch_event_get_header_nil(event, "Skinny-UserToDevice-Line-Instance"));
uint32_t call_id = atoi(switch_event_get_header_nil(event, "Skinny-UserToDevice-Call-Id"));
uint32_t transaction_id = atoi(switch_event_get_header_nil(event, "Skinny-UserToDevice-Transaction-Id"));
uint32_t data_length = atoi(switch_event_get_header_nil(event, "Skinny-UserToDevice-Data-Length"));
uint32_t data_length;
uint32_t sequence_flag = atoi(switch_event_get_header_nil(event, "Skinny-UserToDevice-Sequence-Flag"));
uint32_t display_priority = atoi(switch_event_get_header_nil(event, "Skinny-UserToDevice-Display-Priority"));
uint32_t conference_id = atoi(switch_event_get_header_nil(event, "Skinny-UserToDevice-Conference-Id"));