Fix a crash when reloading the configuration file.

Spotted by:	des
This commit is contained in:
Hiroki Sato 2013-08-27 11:50:33 +00:00
parent 27dfa8eb60
commit 6ce540f397
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=254955

View File

@ -296,10 +296,8 @@ rm_rainfo(struct rainfo *rai)
if (rai->rai_ra_data != NULL)
free(rai->rai_ra_data);
while ((pfx = TAILQ_FIRST(&rai->rai_prefix)) != NULL) {
TAILQ_REMOVE(&rai->rai_prefix, pfx, pfx_next);
free(pfx);
}
while ((pfx = TAILQ_FIRST(&rai->rai_prefix)) != NULL)
delete_prefix(pfx);
while ((sol = TAILQ_FIRST(&rai->rai_soliciter)) != NULL) {
TAILQ_REMOVE(&rai->rai_soliciter, sol, sol_next);
free(sol);