udp.c: remove obsolete line "static struct udp_pcb *pcb_cache = NULL;"

Its is static, and never used in udp.c except udp_init().
This commit is contained in:
fbernon
2007-03-03 17:00:44 +00:00
parent bb8522b737
commit e1b6a4cb21
2 changed files with 5 additions and 4 deletions

View File

@@ -64,12 +64,10 @@
/* exported in udp.h (was static) */
struct udp_pcb *udp_pcbs = NULL;
static struct udp_pcb *pcb_cache = NULL;
void
udp_init(void)
{
udp_pcbs = pcb_cache = NULL;
udp_pcbs = NULL;
}
/**