From d2d1f0f9fc2378914330616a0e1c8f06691ea3d1 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Thu, 23 Apr 2015 10:57:11 +0000 Subject: [PATCH 1/1] [WININET] - Add back our Winsock initialization ROS-diff. Wine has only partially fixed this at this point. CORE-9588 svn path=/trunk/; revision=67365 --- reactos/dll/win32/wininet/internet.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/dll/win32/wininet/internet.c b/reactos/dll/win32/wininet/internet.c index f60d29aa458..c5a9836ef45 100644 --- a/reactos/dll/win32/wininet/internet.c +++ b/reactos/dll/win32/wininet/internet.c @@ -996,6 +996,9 @@ HINTERNET WINAPI InternetOpenW(LPCWSTR lpszAgent, DWORD dwAccessType, { appinfo_t *lpwai = NULL; +#ifdef __REACTOS__ + init_winsock(); +#endif if (TRACE_ON(wininet)) { #define FE(x) { x, #x } static const wininet_flag_info access_type[] = { -- 2.17.1