Commit c5a213a8 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Add a couple traces.

parent bcbf5dce
...@@ -71,6 +71,7 @@ void *Context_CreateDataContext(size_t contextSize) ...@@ -71,6 +71,7 @@ void *Context_CreateDataContext(size_t contextSize)
ret = NULL; ret = NULL;
} }
} }
TRACE("returning %p\n", ret);
return ret; return ret;
} }
...@@ -96,6 +97,7 @@ void *Context_CreateLinkContext(unsigned int contextSize, void *linked, unsigned ...@@ -96,6 +97,7 @@ void *Context_CreateLinkContext(unsigned int contextSize, void *linked, unsigned
InterlockedIncrement(&linkedBase->ref); InterlockedIncrement(&linkedBase->ref);
TRACE("%p's ref count is %d\n", context, linkContext->ref); TRACE("%p's ref count is %d\n", context, linkContext->ref);
} }
TRACE("returning %p\n", context);
return context; return context;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment