From d75a5f4d0428ac669489ed60ec33f1e8881a8a94 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 2 Sep 2008 23:15:28 +0000 Subject: [PATCH] - Set UDPInitialized to FALSE at the end of UDPShutdown svn path=/branches/aicom-network-fixes/; revision=35896 --- lib/drivers/ip/transport/udp/udp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/drivers/ip/transport/udp/udp.c b/lib/drivers/ip/transport/udp/udp.c index 07561d44036..1dba3035179 100644 --- a/lib/drivers/ip/transport/udp/udp.c +++ b/lib/drivers/ip/transport/udp/udp.c @@ -330,6 +330,8 @@ NTSTATUS UDPShutdown( /* Deregister this protocol with IP layer */ IPRegisterProtocol(IPPROTO_UDP, NULL); + UDPInitialized = FALSE; + return STATUS_SUCCESS; }