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
be6e6fb2
Commit
be6e6fb2
authored
Feb 14, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Initialize module handle to NULL for null driver.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
dcae1afa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
driver.c
dlls/user32/driver.c
+2
-1
No files found.
dlls/user32/driver.c
View file @
be6e6fb2
...
...
@@ -77,7 +77,8 @@ static BOOL load_desktop_driver( HWND hwnd, HMODULE *module )
size
=
sizeof
(
path
);
if
(
!
RegQueryValueExW
(
hkey
,
driverW
,
NULL
,
NULL
,
(
BYTE
*
)
path
,
&
size
))
{
ret
=
!
strcmpW
(
path
,
nullW
)
||
(
*
module
=
LoadLibraryW
(
path
));
if
((
ret
=
!
strcmpW
(
path
,
nullW
)))
*
module
=
NULL
;
else
ret
=
(
*
module
=
LoadLibraryW
(
path
))
!=
NULL
;
if
(
!
ret
)
ERR
(
"failed to load %s
\n
"
,
debugstr_w
(
path
)
);
TRACE
(
"%s %p
\n
"
,
debugstr_w
(
path
),
*
module
);
}
...
...
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