Fix another memory corruption
authorSteven Barth <steven@midlink.org>
Sat, 18 Jan 2014 10:09:26 +0000 (11:09 +0100)
committerSteven Barth <steven@midlink.org>
Sat, 18 Jan 2014 10:09:26 +0000 (11:09 +0100)
src/dhcpv6-ia.c

index 88840a4..4d68258 100644 (file)
@@ -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;