Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0f29b48f
Commit
0f29b48f
authored
Oct 17, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Oct 18, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Don't crash logging numeric function names.
parent
c7915134
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
oid.c
dlls/crypt32/oid.c
+4
-3
No files found.
dlls/crypt32/oid.c
View file @
0f29b48f
...
...
@@ -663,7 +663,8 @@ BOOL WINAPI CryptUnregisterOIDFunction(DWORD dwEncodingType, LPCSTR pszFuncName,
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 @@ BOOL WINAPI CryptRegisterDefaultOIDFunction(DWORD dwEncodingType,
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
)
,
d
wIndex
,
d
ebugstr_w
(
pwszDll
));
if
(
!
pwszDll
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment