Skip to content

Commit

Permalink
callops: fix coverity CID #211388, #211360, #211369
Browse files Browse the repository at this point in the history
  • Loading branch information
razvancrainea committed Jul 9, 2020
1 parent 6c022e4 commit ae93b7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/callops/callops.c
Expand Up @@ -521,8 +521,8 @@ static int call_attended_transfer(struct dlg_cell *dlg, struct sip_msg *msg)

static void call_dlg_created_CB(struct dlg_cell *dlg, int type, struct dlg_cb_params *params)
{
str *param;
struct dlg_cell *old_dlg;
str *param = NULL;
struct dlg_cell *old_dlg = NULL;

if (!params->msg)
return;
Expand Down

0 comments on commit ae93b7b

Please sign in to comment.