mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-13 12:40:17 +00:00
FS-5819: fix useless assignment in sofia
This commit is contained in:
parent
9b3f737a94
commit
25001e857f
@ -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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user