diff options
| author | Hiroki Sato <hrs@FreeBSD.org> | 2013-08-27 11:50:33 +0000 |
|---|---|---|
| committer | Hiroki Sato <hrs@FreeBSD.org> | 2013-08-27 11:50:33 +0000 |
| commit | 6ce540f397ff68fbbf02438dbb4fc22b1f5f41d0 (patch) | |
| tree | 4aa782b650cd9398ac95e60630e9e0ac15bb6441 /usr.sbin/rtadvd | |
| parent | 27dfa8eb60e07b403174d75ae254dcc6c8f5094d (diff) | |
Notes
Diffstat (limited to 'usr.sbin/rtadvd')
| -rw-r--r-- | usr.sbin/rtadvd/config.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.sbin/rtadvd/config.c b/usr.sbin/rtadvd/config.c index 02a241d70660f..f0e11a3460879 100644 --- a/usr.sbin/rtadvd/config.c +++ b/usr.sbin/rtadvd/config.c @@ -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); |
