From: Joshua Colp Date: Sat, 30 Dec 2006 18:19:57 +0000 (+0000) Subject: Use asprintf to build the channel names instead of custom function. I believe the... X-Git-Tag: 1.4.1~356 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05716471b51dfb732808d69b2862912d32a719e1;p=thirdparty%2Fasterisk.git Use asprintf to build the channel names instead of custom function. I believe the custom function is doing some things that are not portable across all implementations. (issue #8570 reported by hterag & issue #8692 reported by nicolasg) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@49070 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_zap.c b/channels/chan_zap.c index 62195ee2db..78c2d6f655 100644 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -5186,13 +5186,13 @@ static struct ast_channel *zt_new(struct zt_pvt *i, int state, int startpbx, int free(b2); #ifdef HAVE_PRI if (i->bearer || (i->pri && (i->sig == SIG_FXSKS))) - b2 = ast_safe_string_alloc("Zap/%d:%d-%d", i->pri->trunkgroup, i->channel, y); + asprintf(&b2, "Zap/%d:%d-%d", i->pri->trunkgroup, i->channel, y); else #endif if (i->channel == CHAN_PSEUDO) - b2 = ast_safe_string_alloc("Zap/pseudo-%d", ast_random()); + asprintf(&b2, "Zap/pseudo-%ld", ast_random()); else - b2 = ast_safe_string_alloc("Zap/%d-%d", i->channel, y); + asprintf(&b2, "Zap/%d-%d", i->channel, y); for (x = 0; x < 3; x++) { if ((index != x) && i->subs[x].owner && !strcasecmp(b2, i->subs[x].owner->name)) break;