[asterisk-bugs] [JIRA] (ASTERISK-21036) Jitter Buffer log file creation doesn't account for multiple slashes in DAHDI channel names

Digium Subversion (JIRA) noreply at issues.asterisk.org
Wed Sep 18 14:59:03 CDT 2013


     [ https://issues.asterisk.org/jira/browse/ASTERISK-21036?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Digium Subversion closed ASTERISK-21036.
----------------------------------------

    Resolution: Fixed
    
> Jitter Buffer log file creation doesn't account for multiple slashes in DAHDI channel names
> -------------------------------------------------------------------------------------------
>
>                 Key: ASTERISK-21036
>                 URL: https://issues.asterisk.org/jira/browse/ASTERISK-21036
>             Project: Asterisk
>          Issue Type: Bug
>      Security Level: None
>          Components: Core/Jitterbuffer
>    Affects Versions: 10.7.1
>            Reporter: Richard Kenner
>            Assignee: Kinsey Moore
>            Severity: Minor
>
> DAHDI channels have two slashes, so both must be changed to '#' when forming the filename for the jitterbuffer log.
> *_edited* Removed inline patch_
> [Edit by Rusty Newton - adding quote from Richard's comment and the code from abstract_jb.c I believe he's talking about]
> "Please ignore the patch. If you look at the code that changes '/' to '#', you'll see that it's done (in two places) with an "if" statement. Changing the token "if" to "while" in both places will fix this issue."
> {noformat}
>                 if ((tmp = strchr(name2, '/'))) {
>                         *tmp = '#';
>                 }
>                 bridged = ast_bridged_channel(chan);
>                 /* We should always have bridged chan if a jitterbuffer is in use */
>                 ast_assert(bridged != NULL);
>                 snprintf(name1, sizeof(name1), "%s", ast_channel_name(bridged));
>                 if ((tmp = strchr(name1, '/'))) {
>                         *tmp = '#';
>                 }
> {noformat}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.asterisk.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



More information about the asterisk-bugs mailing list