crypt32: Don't crash logging numeric function names.
diff --git a/dlls/crypt32/oid.c b/dlls/crypt32/oid.c
index 90c88c3..c33d7aa 100644
--- a/dlls/crypt32/oid.c
+++ b/dlls/crypt32/oid.c
@@ -663,7 +663,8 @@
LPSTR szKey;
LONG rc;
- TRACE("%x %s %s\n", dwEncodingType, pszFuncName, pszOID);
+ TRACE("%x %s %s\n", dwEncodingType, debugstr_a(pszFuncName),
+ debugstr_a(pszOID));
if (!GET_CERT_ENCODING_TYPE(dwEncodingType))
return TRUE;
@@ -934,8 +935,8 @@
LPCWSTR existing;
BOOL ret = FALSE;
- TRACE("(%x, %s, %x, %s)\n", dwEncodingType, pszFuncName, dwIndex,
- debugstr_w(pwszDll));
+ TRACE("(%x, %s, %d, %s)\n", dwEncodingType, debugstr_a(pszFuncName),
+ dwIndex, debugstr_w(pwszDll));
if (!pwszDll)
{