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
f75d5625
Commit
f75d5625
authored
Dec 24, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Fix SHGetFolderPathAndSubDir() trace message.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f3693d2b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
shellpath.c
dlls/shell32/shellpath.c
+3
-2
No files found.
dlls/shell32/shellpath.c
View file @
f75d5625
...
...
@@ -3935,7 +3935,8 @@ HRESULT WINAPI SHGetFolderPathAndSubDirA(
HRESULT
hr
=
S_OK
;
LPWSTR
pszSubPathW
=
NULL
;
LPWSTR
pszPathW
=
NULL
;
TRACE
(
"%08x,%08x,%s
\n
"
,
nFolder
,
dwFlags
,
debugstr_w
(
pszSubPathW
));
TRACE
(
"%p,%#x,%p,%#x,%s,%p
\n
"
,
hwndOwner
,
nFolder
,
hToken
,
dwFlags
,
debugstr_a
(
pszSubPath
),
pszPath
);
if
(
pszPath
)
{
pszPathW
=
HeapAlloc
(
GetProcessHeap
(),
0
,
MAX_PATH
*
sizeof
(
WCHAR
));
...
...
@@ -3988,7 +3989,7 @@ HRESULT WINAPI SHGetFolderPathAndSubDirW(
CSIDL_Type
type
;
int
ret
;
TRACE
(
"%p,%
p,nFolder=0x%04x,%s
\n
"
,
hwndOwner
,
pszPath
,
nFolder
,
debugstr_w
(
pszSubPath
)
);
TRACE
(
"%p,%
#x,%p,%#x,%s,%p
\n
"
,
hwndOwner
,
nFolder
,
hToken
,
dwFlags
,
debugstr_w
(
pszSubPath
),
pszPath
);
/* Windows always NULL-terminates the resulting path regardless of success
* or failure, so do so first
...
...
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