1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-18 09:32:34 +00:00

FS-5819: fix useless assignment in sofia

This commit is contained in:
Michael Jerris 2013-09-27 12:39:49 -04:00
parent 2f28507eb6
commit d732c855cc

@ -672,7 +672,7 @@ static void sip_fragment_clear_chain(sip_header_t *h)
{
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;
sip_fragment_clear(h->sh_common);