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
69733d65
Commit
69733d65
authored
Jul 06, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Handle string-to-guid conversion errors (Coverity).
parent
b49f9f60
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
shellpath.c
dlls/shell32/shellpath.c
+5
-1
No files found.
dlls/shell32/shellpath.c
View file @
69733d65
...
@@ -5334,7 +5334,11 @@ static HRESULT WINAPI knownfolder_GetFolderDefinition(
...
@@ -5334,7 +5334,11 @@ static HRESULT WINAPI knownfolder_GetFolderDefinition(
hr
=
HRESULT_FROM_WIN32
(
RegGetValueW
(
HKEY_LOCAL_MACHINE
,
knownfolder
->
registryPath
,
szParentFolder
,
hr
=
HRESULT_FROM_WIN32
(
RegGetValueW
(
HKEY_LOCAL_MACHINE
,
knownfolder
->
registryPath
,
szParentFolder
,
RRF_RT_REG_SZ
,
NULL
,
parentGuid
,
&
dwSize
));
RRF_RT_REG_SZ
,
NULL
,
parentGuid
,
&
dwSize
));
if
(
SUCCEEDED
(
hr
))
if
(
SUCCEEDED
(
hr
))
IIDFromString
(
parentGuid
,
&
pKFD
->
fidParent
);
{
hr
=
IIDFromString
(
parentGuid
,
&
pKFD
->
fidParent
);
if
(
FAILED
(
hr
))
return
hr
;
}
get_known_folder_dword
(
knownfolder
->
registryPath
,
szAttributes
,
&
pKFD
->
dwAttributes
);
get_known_folder_dword
(
knownfolder
->
registryPath
,
szAttributes
,
&
pKFD
->
dwAttributes
);
...
...
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