replace ast_safe_string_alloc() with asprintf()

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48497 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Luigi Rizzo 2006-12-15 15:39:29 +00:00
parent 286f02bf40
commit a736605bf4
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ static struct ast_channel *features_new(struct feature_pvt *p, int state, int in
for (x=1;x<4;x++) {
if (b2)
free(b2);
b2 = ast_safe_string_alloc("Feature/%s/%s-%d", p->tech, p->dest, x);
asprintf(&b2, "Feature/%s/%s-%d", p->tech, p->dest, x);
for (y=0;y<3;y++) {
if (y == index)
continue;