From 2ae0399eb9d38bb84c1beb5fb411fca4ce0c0348 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Tue, 3 Nov 2015 21:57:08 +0000 Subject: [PATCH] [WS2_32_NEW] Do not initialize ProtocolId to 0. By Peter Hater. CORE-10440 svn path=/trunk/; revision=69806 --- reactos/dll/win32/ws2_32_new/src/enumprot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/ws2_32_new/src/enumprot.c b/reactos/dll/win32/ws2_32_new/src/enumprot.c index 6948ae9d970..bfa889a964d 100644 --- a/reactos/dll/win32/ws2_32_new/src/enumprot.c +++ b/reactos/dll/win32/ws2_32_new/src/enumprot.c @@ -22,7 +22,7 @@ CheckProtocolMatch(IN LPINT ProtocolSet, { BOOL Return = FALSE; DWORD i = 0; - INT ProtocolId = 0; + INT ProtocolId; /* Make sure we have a set */ if (ProtocolSet)