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
6efd9051
Commit
6efd9051
authored
Sep 19, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Fix printing NULL strings.
parent
5177a5f6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
chain.c
dlls/crypt32/chain.c
+1
-1
oid.c
dlls/crypt32/oid.c
+2
-2
No files found.
dlls/crypt32/chain.c
View file @
6efd9051
...
...
@@ -1668,7 +1668,7 @@ static LPCSTR filetime_to_str(const FILETIME *time)
char
dateFmt
[
80
];
/* sufficient for all versions of LOCALE_SSHORTDATE */
SYSTEMTIME
sysTime
;
if
(
!
time
)
return
NULL
;
if
(
!
time
)
return
"(null)"
;
GetLocaleInfoA
(
LOCALE_SYSTEM_DEFAULT
,
LOCALE_SSHORTDATE
,
dateFmt
,
sizeof
(
dateFmt
)
/
sizeof
(
dateFmt
[
0
]));
...
...
dlls/crypt32/oid.c
View file @
6efd9051
...
...
@@ -614,8 +614,8 @@ BOOL WINAPI CryptRegisterOIDFunction(DWORD dwEncodingType, LPCSTR pszFuncName,
HKEY
hKey
;
LPSTR
szKey
;
TRACE
(
"(%x, %s, %s, %s, %s)
\n
"
,
dwEncodingType
,
pszFuncName
,
debugstr_a
(
pszOID
),
debugstr_w
(
pwszDll
),
pszOverrideFuncName
);
TRACE
(
"(%x, %s, %s, %s, %s)
\n
"
,
dwEncodingType
,
debugstr_a
(
pszFuncName
)
,
debugstr_a
(
pszOID
),
debugstr_w
(
pwszDll
),
debugstr_a
(
pszOverrideFuncName
)
);
/* Native does nothing pwszDll is NULL */
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