Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
de3afabf
Commit
de3afabf
authored
Jul 19, 2008
by
Kirill K. Smirnov
Committed by
Alexandre Julliard
Jul 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Avoid usage of undefined xdg_results variable, since…
shell32: Avoid usage of undefined xdg_results variable, since XDG_UserDirLookup() always corrupts it.
parent
02631adc
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 @
de3afabf
...
...
@@ -2139,7 +2139,7 @@ static void _SHCreateSymbolicLinks(void)
const
char
*
pszHome
;
HRESULT
hr
;
const
unsigned
int
num
=
sizeof
(
xdg_dirs
)
/
sizeof
(
xdg_dirs
[
0
]);
char
**
xdg_results
=
NULL
;
char
**
xdg_results
;
char
*
xdg_desktop_dir
;
/* Create all necessary profile sub-dirs up to 'My Documents' and get the unix path. */
...
...
@@ -2149,7 +2149,8 @@ static void _SHCreateSymbolicLinks(void)
pszPersonal
=
wine_get_unix_file_name
(
wszTempPath
);
if
(
!
pszPersonal
)
return
;
XDG_UserDirLookup
(
xdg_dirs
,
num
,
&
xdg_results
);
hr
=
XDG_UserDirLookup
(
xdg_dirs
,
num
,
&
xdg_results
);
if
(
FAILED
(
hr
))
xdg_results
=
NULL
;
pszHome
=
getenv
(
"HOME"
);
if
(
pszHome
&&
!
stat
(
pszHome
,
&
statFolder
)
&&
S_ISDIR
(
statFolder
.
st_mode
))
{
...
...
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