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
c0b37037
Commit
c0b37037
authored
Mar 24, 2017
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 24, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Don't trace the contents of an output buffer (Valgrind).
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
66e3c97c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
advpack.c
dlls/advpack/advpack.c
+4
-4
No files found.
dlls/advpack/advpack.c
View file @
c0b37037
...
...
@@ -763,9 +763,9 @@ HRESULT WINAPI TranslateInfStringExA(HINF hInf, LPCSTR pszInfFilename,
HRESULT
res
;
DWORD
len
=
0
;
TRACE
(
"(%p, %s, %s, %s, %
s
, %d, %p, %p)
\n
"
,
hInf
,
debugstr_a
(
pszInfFilename
),
TRACE
(
"(%p, %s, %s, %s, %
p
, %d, %p, %p)
\n
"
,
hInf
,
debugstr_a
(
pszInfFilename
),
debugstr_a
(
pszTranslateSection
),
debugstr_a
(
pszTranslateKey
),
debugstr_a
(
pszBuffer
)
,
dwBufferSize
,
pdwRequiredSize
,
pvReserved
);
pszBuffer
,
dwBufferSize
,
pdwRequiredSize
,
pvReserved
);
if
(
!
pszInfFilename
||
!
pszTranslateSection
||
!
pszTranslateKey
||
!
pdwRequiredSize
)
...
...
@@ -843,9 +843,9 @@ HRESULT WINAPI TranslateInfStringExW(HINF hInf, LPCWSTR pszInfFilename,
LPWSTR
pszBuffer
,
DWORD
dwBufferSize
,
PDWORD
pdwRequiredSize
,
PVOID
pvReserved
)
{
TRACE
(
"(%p, %s, %s, %s, %
s
, %d, %p, %p)
\n
"
,
hInf
,
debugstr_w
(
pszInfFilename
),
TRACE
(
"(%p, %s, %s, %s, %
p
, %d, %p, %p)
\n
"
,
hInf
,
debugstr_w
(
pszInfFilename
),
debugstr_w
(
pszTranslateSection
),
debugstr_w
(
pszTranslateKey
),
debugstr_w
(
pszBuffer
)
,
dwBufferSize
,
pdwRequiredSize
,
pvReserved
);
pszBuffer
,
dwBufferSize
,
pdwRequiredSize
,
pvReserved
);
if
(
!
hInf
||
!
pszInfFilename
||
!
pszTranslateSection
||
!
pszTranslateKey
)
return
E_INVALIDARG
;
...
...
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