[mod_verto] Fix packet o death.

This commit is contained in:
Anthony Minessale 2019-12-04 22:41:51 +00:00 committed by Andrey Volk
parent 7c795ea555
commit 55b148f1c3
1 changed files with 2 additions and 1 deletions

View File

@ -3589,6 +3589,8 @@ static switch_bool_t verto__invite_func(const char *method, cJSON *params, jsock
*response = obj;
PROTECT_INTERFACE(verto_endpoint_interface);
if (!params) {
cJSON_AddItemToObject(obj, "message", cJSON_CreateString("Params data missing"));
err = 1; goto cleanup;
@ -3615,7 +3617,6 @@ static switch_bool_t verto__invite_func(const char *method, cJSON *params, jsock
switch_event_add_header_string(var_event, SWITCH_STACK_BOTTOM, "origination_uuid", call_id);
PROTECT_INTERFACE(verto_endpoint_interface);
if ((reason = switch_core_session_outgoing_channel(NULL, var_event, "rtc",
NULL, &session, NULL, SOF_NONE, &cancel_cause)) != SWITCH_CAUSE_SUCCESS) {
cJSON_AddItemToObject(obj, "message", cJSON_CreateString("Cannot create channel"));