diff options
author | Steven Barth <steven@midlink.org> | 2014-01-18 11:09:26 +0100 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2014-01-18 11:09:26 +0100 |
commit | 482a8b369deca0c485b5d39e5ac302ed5ad42499 (patch) | |
tree | 13f76e9be8be3b9d5592bd262b2cd1e1f5b3e0e0 | |
parent | 9d050fcefd335f4cc0d8ddbabebb99954abe8904 (diff) |
Fix another memory corruption
-rw-r--r-- | src/dhcpv6-ia.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dhcpv6-ia.c b/src/dhcpv6-ia.c index 88840a4..4d68258 100644 --- a/src/dhcpv6-ia.c +++ b/src/dhcpv6-ia.c @@ -101,6 +101,7 @@ int setup_dhcpv6_ia_interface(struct interface *iface, bool enable) list_for_each_entry(c, &iface->ia_assignments, head) { if (c->length != 128 || c->assigned > a->assigned) { list_add_tail(&a->head, &c->head); + break; } else if (c->assigned == a->assigned) { // Already an assignment with that number break; |