Fix two minor memory leaks.

svn path=/trunk/; revision=44682
This commit is contained in:
Bill Meier 2012-08-26 23:44:25 +00:00
parent 89c5e9796f
commit cbd2a8ff25
1 changed files with 2 additions and 2 deletions

View File

@ -1189,10 +1189,10 @@ static guint32 dissect_ies (tvbuff_t * tvb, guint32 offset,
break;
case IAX_IE_CALLED_NUMBER:
iax2_info->calledParty = g_strdup(tvb_format_text(tvb, offset+2, ies_len));
iax2_info->calledParty = ep_strdup(tvb_format_text(tvb, offset+2, ies_len));
break;
case IAX_IE_CALLING_NUMBER:
iax2_info->callingParty = g_strdup(tvb_format_text(tvb, offset+2, ies_len));
iax2_info->callingParty = ep_strdup(tvb_format_text(tvb, offset+2, ies_len));
break;
case IAX_IE_APPARENT_ADDR: