diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-01 13:12:10 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-01 13:12:10 +0000 |
commit | 035f6acbfec1e06a207217ae81153b67ced995f3 (patch) | |
tree | 0f30c642631e1a0d370ac45e17c99d13ab4c7332 /proto/ospf/lsalib.c | |
parent | 8281ff201e1eebe35cb8e7716565361bed77a6cd (diff) |
Patch from Andreas Steinmetz <ast@domdv.de>
Diffstat (limited to 'proto/ospf/lsalib.c')
-rw-r--r-- | proto/ospf/lsalib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/proto/ospf/lsalib.c b/proto/ospf/lsalib.c index c12c5bde..1e977096 100644 --- a/proto/ospf/lsalib.c +++ b/proto/ospf/lsalib.c @@ -15,6 +15,8 @@ flush_lsa(struct top_hash_entry *en, struct ospf_area *oa) OSPF_TRACE(D_EVENTS, "Going to remove node Type: %u, Id: %I, Rt: %I, Age: %u", en->lsa.type, en->lsa.id, en->lsa.rt, en->lsa.age); s_rem_node(SNODE en); + if(en->lsa_body!=NULL) mb_free(en->lsa_body); + en->lsa_body=NULL; ospf_hash_delete(oa->gr,en); } |