dect
/
asterisk
Archived
13
0
Fork 0

Avoid using ast_strdupa() in a loop.

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@175295 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2009-02-12 20:45:47 +00:00
parent 48f033b1ab
commit 0ee8c277d7
1 changed files with 2 additions and 1 deletions

View File

@ -7670,7 +7670,8 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req, int t38action
/* XXX This needs to be done per media stream, since it's media stream specific */
iterator = req->sdp_start;
while ((a = get_sdp_iterate(&iterator, req, "a"))[0] != '\0') {
char* mimeSubtype = ast_strdupa(a); /* ensures we have enough space */
char mimeSubtype[128];
ast_copy_string(mimeSubtype, a, sizeof(mimeSubtype));
if (option_debug > 1) {
int breakout = FALSE;