We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93305c2 commit 5f92561Copy full SHA for 5f92561
1 file changed
src/ipv4ll.c
@@ -452,7 +452,7 @@ ipv4ll_drop(struct interface *ifp)
452
ipv4ll_freearp(ifp);
453
454
if ((ifp->options->options & DHCPCD_NODROP) == DHCPCD_NODROP)
455
- return;
+ goto free;
456
457
state = IPV4LL_STATE(ifp);
458
if (state) {
@@ -483,6 +483,7 @@ ipv4ll_drop(struct interface *ifp)
483
script_runreason(ifp, "IPV4LL");
484
}
485
486
+free:
487
ipv4ll_free(ifp);
488
dhcpcd_dropped(ifp);
489
0 commit comments