Browse Source

MT#55283 skip NULL check

We just created the subscription. It must be there.

Change-Id: Iaf8a7cd07dc9f765b6d5203d74ab91290e2af873
pull/1918/head
Richard Fuchs 9 months ago
parent
commit
00c2d3058f
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      daemon/call.c

+ 1
- 2
daemon/call.c View File

@ -3111,8 +3111,7 @@ int monologue_offer_answer(struct call_monologue *monologues[2], sdp_streams_q *
__subscribe_medias_both_ways(sender_media, receiver_media, is_offer, &old_medias);
struct media_subscription * ms = call_get_media_subscription(receiver_media->media_subscribers_ht, sender_media);
if (ms)
ms->attrs.transcoding = false;
ms->attrs.transcoding = false;
__media_init_from_flags(sender_media, receiver_media, sp, flags);


Loading…
Cancel
Save