FS-5819: fix useless assignment in sofia

This commit is contained in:
Michael Jerris 2013-09-27 12:39:49 -04:00
parent 9b3f737a94
commit 25001e857f

View File

@ -672,7 +672,7 @@ static void sip_fragment_clear_chain(sip_header_t *h)
{ {
void const *next; void const *next;
for (h = h; h; h = h->sh_succ) { for (; h; h = h->sh_succ) {
next = (char *)h->sh_data + h->sh_len; next = (char *)h->sh_data + h->sh_len;
sip_fragment_clear(h->sh_common); sip_fragment_clear(h->sh_common);