Skip to content

Commit

Permalink
Fix: sdp_free() bug introduced in commit bde8c0a
Browse files Browse the repository at this point in the history
Credits to csollet for reporting.
  • Loading branch information
liviuchircu committed Aug 14, 2013
1 parent b19eca9 commit a5e9f4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/sdp/sdp.c
Expand Up @@ -752,7 +752,7 @@ int parse_sdp(struct sip_msg* _m)
void free_sdp(sdp_info_t** sdp)
{
__free_sdp(*sdp);
pkg_free(sdp);
pkg_free(*sdp);
*sdp = NULL;
}

Expand Down

0 comments on commit a5e9f4b

Please sign in to comment.