Fix very stupid bug in node_del(), which might have caused corruption of
subnets.
This commit is contained in:
parent
67a6d7bcc4
commit
7caa253df4
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
$Id: node.c,v 1.1.2.11 2002/03/22 13:31:18 guus Exp $
|
$Id: node.c,v 1.1.2.12 2002/04/29 20:05:07 guus Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
@ -123,7 +123,7 @@ cp
|
||||||
subnet_del(n, s);
|
subnet_del(n, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
for(node = n->subnet_tree->head; node; node = next)
|
for(node = n->edge_tree->head; node; node = next)
|
||||||
{
|
{
|
||||||
next = node->next;
|
next = node->next;
|
||||||
e = (edge_t *)node->data;
|
e = (edge_t *)node->data;
|
||||||
|
|
Loading…
Reference in a new issue