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
e738f614
Commit
e738f614
authored
Sep 10, 2008
by
Kai Blin
Committed by
Alexandre Julliard
Sep 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dplayx: Fix possible NULL pointer deference in error path (Coverity).
parent
8348c9fa
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
dplayx_global.c
dlls/dplayx/dplayx_global.c
+2
-1
No files found.
dlls/dplayx/dplayx_global.c
View file @
e738f614
...
@@ -889,7 +889,8 @@ HRESULT DPLAYX_SetConnectionSettingsA
...
@@ -889,7 +889,8 @@ HRESULT DPLAYX_SetConnectionSettingsA
{
{
DPLAYX_ReleaseSemaphore
();
DPLAYX_ReleaseSemaphore
();
ERR
(
"DPSESSIONDESC passed in? Size=%u
\n
"
,
lpConn
->
lpSessionDesc
->
dwSize
);
ERR
(
"DPSESSIONDESC passed in? Size=%u
\n
"
,
lpConn
->
lpSessionDesc
?
lpConn
->
lpSessionDesc
->
dwSize
:
0
);
return
DPERR_INVALIDPARAMS
;
return
DPERR_INVALIDPARAMS
;
}
}
...
...
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