[asterisk-bugs] [JIRA] (ASTERISK-27792) res_pjsip: Segfault when calling pjsip_hdr_print_on in sip_msg.c:581

Joshua Colp (JIRA) noreply at issues.asterisk.org
Fri Apr 6 04:54:50 CDT 2018


    [ https://issues.asterisk.org/jira/browse/ASTERISK-27792?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=242950#comment-242950 ] 

Joshua Colp commented on ASTERISK-27792:
----------------------------------------

The patch is still in the 13.20.0 release:

{noformat}
✔ jcolp at upsilon:~/development/asterisk/public [13.20.0| …1]> ls third-party/pjproject/patches/
0000-remove-third-party.patch                                    0040-183_without_to_tag.patch                            0071-sdp_fmtp_attr.patch  README
0000-set_apps_initial_log_level.patch                            0050-dont_terminate_session_early.patch                  asterisk_malloc_debug.c   user.mak
0021-sip_parser-Fix-return-code-in-pjsip_find_msg-and-add.patch  0060-sip_msg-Prevent-crash-on-header-without-vptr.patch  asterisk_malloc_debug.h
0030-sip_transport-Destroy-transports-not-in-hash.patch          0070-sdp_media_fmt.patch                                 config_site.h
{noformat}

> res_pjsip: Segfault when calling pjsip_hdr_print_on in sip_msg.c:581
> --------------------------------------------------------------------
>
>                 Key: ASTERISK-27792
>                 URL: https://issues.asterisk.org/jira/browse/ASTERISK-27792
>             Project: Asterisk
>          Issue Type: Bug
>      Security Level: None
>          Components: Channels/chan_pjsip
>    Affects Versions: 13.20.0
>         Environment: CentOS
>            Reporter: Ross Beer
>              Labels: pjsip
>
> Since upgrading to pjproject 2.7.2 the patch that fixed issue ASTERISK-26832 was removed and the actual fix is not present in release 2.7.2
> Fixed Code:
> {noformat}
> PJ_DEF(int) pjsip_hdr_print_on( void *hdr_ptr, char *buf, pj_size_t len)
> {
>     pjsip_hdr *hdr = (pjsip_hdr*) hdr_ptr;
>     if (!hdr->vptr) {
>         return 0;
>     }
>     return (*hdr->vptr->print_on)(hdr_ptr, buf, len);
> }
> {noformat}
> 2.7.2 Code:
> {noformat}
> PJ_DEF(int) pjsip_hdr_print_on( void *hdr_ptr, char *buf, pj_size_t len)
> {
>     pjsip_hdr *hdr = (pjsip_hdr*) hdr_ptr;
>     return (*hdr->vptr->print_on)(hdr_ptr, buf, len);
> }
> {noformat}
> The PJSIP team committed a change in revision 5727, however, this isn't in the 2.7.2 release.



--
This message was sent by Atlassian JIRA
(v6.2#6252)



More information about the asterisk-bugs mailing list