From 89f1d8c58a67e62be18b6d48fc1aa871c77d626a Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Fri, 7 Jul 2017 18:24:05 +0200 Subject: [PATCH] wininet: Fixed connection_pool_cs declaration. Signed-off-by: Jacek Caban Signed-off-by: Alexandre Julliard --- dlls/wininet/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wininet/http.c b/dlls/wininet/http.c index 02f6609bef3..ef9f144797c 100644 --- a/dlls/wininet/http.c +++ b/dlls/wininet/http.c @@ -212,7 +212,7 @@ static CRITICAL_SECTION connection_pool_cs; static CRITICAL_SECTION_DEBUG connection_pool_debug = { 0, 0, &connection_pool_cs, - { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList }, + { &connection_pool_debug.ProcessLocksList, &connection_pool_debug.ProcessLocksList }, 0, 0, { (DWORD_PTR)(__FILE__ ": connection_pool_cs") } }; static CRITICAL_SECTION connection_pool_cs = { &connection_pool_debug, -1, 0, 0, 0, 0 };