The static buffer for codecs when invoking the "core show channeltype" CLI command
did not have enough room for all codecs. This has been extended so it does.
ASTERISK-24542 #close
Reported by: snuffy
patches:
channeltype-tech.diff submitted by snuffy (license 5024)
Review: https://reviewboard.asterisk.org/r/4204/
........
Merged revisions 428632 from http://svn.asterisk.org/svn/asterisk/branches/13
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@428633
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
static char *handle_cli_core_show_channeltype(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
{
struct chanlist *cl = NULL;
- struct ast_str *codec_buf = ast_str_alloca(64);
+ struct ast_str *codec_buf = ast_str_alloca(256);
switch (cmd) {
case CLI_INIT: