Module: wine Branch: master Commit: 3634dc1b1c23e3b5ad80dafd6dd1ae3eedd2d3cf URL: http://source.winehq.org/git/wine.git/?a=commit;h=3634dc1b1c23e3b5ad80dafd6d...
Author: Rob Shearman rob@codeweavers.com Date: Tue Nov 13 18:58:51 2007 +0000
rpcrt4: Fix a copy and paste mistake in declaring threaddata_cs_debug.
Reported by Hans Leidekker.
---
dlls/rpcrt4/rpcrt4_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/rpcrt4/rpcrt4_main.c b/dlls/rpcrt4/rpcrt4_main.c index a3caa17..044d094 100644 --- a/dlls/rpcrt4/rpcrt4_main.c +++ b/dlls/rpcrt4/rpcrt4_main.c @@ -138,7 +138,7 @@ static CRITICAL_SECTION uuid_cs = { &critsect_debug, -1, 0, 0, 0, 0 }; static CRITICAL_SECTION threaddata_cs; static CRITICAL_SECTION_DEBUG threaddata_cs_debug = { - 0, 0, &uuid_cs, + 0, 0, &threaddata_cs, { &threaddata_cs_debug.ProcessLocksList, &threaddata_cs_debug.ProcessLocksList }, 0, 0, { (DWORD_PTR)(__FILE__ ": threaddata_cs") } };