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
3dcdbba6
Commit
3dcdbba6
authored
Jun 26, 2018
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 26, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Fix string arguments tracing.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4d1190f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
base64.c
dlls/crypt32/base64.c
+4
-4
No files found.
dlls/crypt32/base64.c
View file @
3dcdbba6
...
...
@@ -622,7 +622,7 @@ static LONG Base64WithHeaderAndTrailerToBinaryA(LPCSTR pszString,
if
(
!
(
headerBegins
=
strstr
(
pszString
,
header
)))
{
TRACE
(
"Can't find %s in %s.
\n
"
,
header
,
pszString
);
TRACE
(
"Can't find %s in %s.
\n
"
,
header
,
debugstr_an
(
pszString
,
cchString
)
);
return
ERROR_INVALID_DATA
;
}
...
...
@@ -746,7 +746,7 @@ BOOL WINAPI CryptStringToBinaryA(LPCSTR pszString,
StringToBinaryAFunc
decoder
;
LONG
ret
;
TRACE
(
"(%s, %d, %08x, %p, %p, %p, %p)
\n
"
,
debugstr_a
(
pszString
),
TRACE
(
"(%s, %d, %08x, %p, %p, %p, %p)
\n
"
,
debugstr_a
n
(
pszString
,
cchString
?
cchString
:
-
1
),
cchString
,
dwFlags
,
pbBinary
,
pcbBinary
,
pdwSkip
,
pdwFlags
);
if
(
!
pszString
)
...
...
@@ -833,7 +833,7 @@ static LONG Base64WithHeaderAndTrailerToBinaryW(LPCWSTR pszString,
if
(
!
(
headerBegins
=
strstrW
(
pszString
,
header
)))
{
TRACE
(
"Can't find %s in %s.
\n
"
,
debugstr_w
(
header
),
debugstr_w
(
psz
String
));
TRACE
(
"Can't find %s in %s.
\n
"
,
debugstr_w
(
header
),
debugstr_w
n
(
pszString
,
cch
String
));
return
ERROR_INVALID_DATA
;
}
...
...
@@ -957,7 +957,7 @@ BOOL WINAPI CryptStringToBinaryW(LPCWSTR pszString,
StringToBinaryWFunc
decoder
;
LONG
ret
;
TRACE
(
"(%s, %d, %08x, %p, %p, %p, %p)
\n
"
,
debugstr_w
(
pszString
),
TRACE
(
"(%s, %d, %08x, %p, %p, %p, %p)
\n
"
,
debugstr_w
n
(
pszString
,
cchString
?
cchString
:
-
1
),
cchString
,
dwFlags
,
pbBinary
,
pcbBinary
,
pdwSkip
,
pdwFlags
);
if
(
!
pszString
)
...
...
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