Juan Lang : crypt32: Add a couple traces.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Aug 8 08:59:32 CDT 2007


Module: wine
Branch: master
Commit: c5a213a816379092f76e50dc6602ad03b953c8bf
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c5a213a816379092f76e50dc6602ad03b953c8bf

Author: Juan Lang <juan.lang at gmail.com>
Date:   Tue Aug  7 14:56:26 2007 -0700

crypt32: Add a couple traces.

---

 dlls/crypt32/context.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/crypt32/context.c b/dlls/crypt32/context.c
index ab57c57..977ea1d 100644
--- a/dlls/crypt32/context.c
+++ b/dlls/crypt32/context.c
@@ -71,6 +71,7 @@ void *Context_CreateDataContext(size_t contextSize)
             ret = NULL;
         }
     }
+    TRACE("returning %p\n", ret);
     return ret;
 }
 
@@ -96,6 +97,7 @@ void *Context_CreateLinkContext(unsigned int contextSize, void *linked, unsigned
             InterlockedIncrement(&linkedBase->ref);
         TRACE("%p's ref count is %d\n", context, linkContext->ref);
     }
+    TRACE("returning %p\n", context);
     return context;
 }
 




More information about the wine-cvs mailing list