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
a16b9ff5
Commit
a16b9ff5
authored
May 08, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
May 08, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Improve error handling in get_config_key_string.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0239026b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
filedlg.c
dlls/comdlg32/filedlg.c
+4
-5
No files found.
dlls/comdlg32/filedlg.c
View file @
a16b9ff5
...
...
@@ -250,11 +250,10 @@ static BOOL get_config_key_string(HKEY hkey, const WCHAR *name, WCHAR **value)
DWORD
type
,
size
;
WCHAR
*
str
;
if
(
hkey
&&
!
RegQueryValueExW
(
hkey
,
name
,
0
,
&
type
,
NULL
,
&
size
))
{
if
(
type
!=
REG_SZ
&&
type
!=
REG_EXPAND_SZ
)
return
FALSE
;
}
if
(
RegQueryValueExW
(
hkey
,
name
,
0
,
&
type
,
NULL
,
&
size
))
return
FALSE
;
if
(
type
!=
REG_SZ
&&
type
!=
REG_EXPAND_SZ
)
return
FALSE
;
str
=
heap_alloc
(
size
);
if
(
RegQueryValueExW
(
hkey
,
name
,
0
,
&
type
,
(
BYTE
*
)
str
,
&
size
))
...
...
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