From d1940302bbd50f62135c55fc28551240d735c923 Mon Sep 17 00:00:00 2001 From: anderscarlman Date: Sat, 12 Apr 2003 15:40:43 +0000 Subject: [PATCH] Removed the lines setting dhcp->msg_in and dhcp->options_in to NULL, since this is done implicitly through dhcp_free_reply(). --- src/core/dhcp.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/dhcp.c b/src/core/dhcp.c index 8e215895..3ffa4b7a 100644 --- a/src/core/dhcp.c +++ b/src/core/dhcp.c @@ -1013,8 +1013,6 @@ static err_t dhcp_unfold_reply(struct dhcp *dhcp) u16_t j = 0; /* free any left-overs from previous unfolds */ dhcp_free_reply(dhcp); - dhcp->msg_in = NULL; - dhcp->options_in = NULL; /* options present? */ if (dhcp->p->tot_len > (sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN)) {