From 48fe13bfd73b5e080aaf9d8964b4c07f030bf24a Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 27 Jul 2004 17:40:44 +0000 Subject: 2004-07-27 Paul Jakma * ospf_packet.c: (ospf_ls_upd_send_queue_event) fix thinko from last fix for ospfd wedging due to oversize LSAs: dont list loop on ospf_ls_upd_queue_send() - guaranteed segfault. --- ospfd/ospf_packet.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'ospfd/ospf_packet.c') diff --git a/ospfd/ospf_packet.c b/ospfd/ospf_packet.c index 67215ebc..8aa63998 100644 --- a/ospfd/ospf_packet.c +++ b/ospfd/ospf_packet.c @@ -3123,11 +3123,7 @@ ospf_ls_upd_send_queue_event (struct thread *thread) if (rn->info == NULL) continue; - for (tn = update->head; tn; tn = nn) - { - nn = tn->next; - ospf_ls_upd_queue_send (oi, update, rn->p.u.prefix4); - } + ospf_ls_upd_queue_send (oi, update, rn->p.u.prefix4); /* list might not be empty. * TODO: work out what to do about oversized LSAs. -- cgit v1.2.1