From ba666295eb57a5ca89ac09e7a841320c629b760e Mon Sep 17 00:00:00 2001 From: likewise Date: Mon, 27 Jan 2003 11:31:30 +0000 Subject: [PATCH] Nullified stray pointer for debugging purposes. --- src/core/dhcp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/dhcp.c b/src/core/dhcp.c index 902c61ec..aae04b3c 100644 --- a/src/core/dhcp.c +++ b/src/core/dhcp.c @@ -163,6 +163,7 @@ static void dhcp_check(struct dhcp_state *state) DEBUGF(DHCP_DEBUG, ("dhcp_check(): sending ARP request len %u", p->tot_len)); result = state->netif->linkoutput(state->netif, p); pbuf_free(p); + p = NULL; } state->tries++; msecs = 500;