From 20689dba23c467fcb2f09233f7d469faeffbbfb7 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sun, 23 Apr 2017 17:59:25 +0000 Subject: [PATCH] [CRYPTNET] - Fix ROS-Diff. Spotted by CRLF. CORE-13117 #resolve svn path=/trunk/; revision=74395 --- reactos/dll/win32/cryptnet/cryptnet_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/cryptnet/cryptnet_main.c b/reactos/dll/win32/cryptnet/cryptnet_main.c index e421625c589..a7838b1e766 100644 --- a/reactos/dll/win32/cryptnet/cryptnet_main.c +++ b/reactos/dll/win32/cryptnet/cryptnet_main.c @@ -1028,7 +1028,7 @@ static BOOL WINAPI File_RetrieveEncodedObjectW(LPCWSTR pszURL, #ifdef __REACTOS__ if ((hFile == INVALID_HANDLE_VALUE) && (lstrlenW(components.lpszUrlPath) > 1) && (components.lpszUrlPath[1] != ':')) #else - if ((hFile == INVALID_HANDLE_VALUE) + if (hFile == INVALID_HANDLE_VALUE) #endif { /* Try again on the current drive */ -- 2.17.1