]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
res_pjsip_sdp_rtp: Fix retrieval of "ice-pwd" attribute if in session and not media...
authorJoshua Colp <jcolp@digium.com>
Sat, 6 Sep 2014 19:11:25 +0000 (19:11 +0000)
committerJoshua Colp <jcolp@digium.com>
Sat, 6 Sep 2014 19:11:25 +0000 (19:11 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@422746 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_pjsip_sdp_rtp.c

index b7e1eef3dd50d9b8d5392fd026f89d2dd927e6d5..3d57679355048a76575f158ead09ff0d93963fbd 100644 (file)
@@ -403,7 +403,7 @@ static void process_ice_attributes(struct ast_sip_session *session, struct ast_s
 
        attr = pjmedia_sdp_media_find_attr2(remote_stream, "ice-pwd", NULL);
        if (!attr) {
-               pjmedia_sdp_attr_find2(remote->attr_count, remote->attr, "ice-pwd", NULL);
+               attr = pjmedia_sdp_attr_find2(remote->attr_count, remote->attr, "ice-pwd", NULL);
        }
        if (attr) {
                ast_copy_pj_str(attr_value, (pj_str_t*)&attr->value, sizeof(attr_value));