Module: wine Branch: master Commit: 89f1d8c58a67e62be18b6d48fc1aa871c77d626a URL: http://source.winehq.org/git/wine.git/?a=commit;h=89f1d8c58a67e62be18b6d48fc...
Author: Jacek Caban jacek@codeweavers.com Date: Fri Jul 7 18:24:05 2017 +0200
wininet: Fixed connection_pool_cs declaration.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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 02f6609..ef9f144 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 };