Browse Source

Nullified stray pointer for debugging purposes.

STABLE-2_1_x
likewise 24 years ago
parent
commit
ba666295eb
  1. 1
      src/core/dhcp.c

1
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;

Loading…
Cancel
Save