mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-13 07:45:26 +00:00
FS-5819: fix useless assignment in sofia
This commit is contained in:
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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user