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
312e0d51
Commit
312e0d51
authored
Apr 27, 2022
by
Fabian Maurer
Committed by
Alexandre Julliard
Apr 27, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplay: Prevent usage of uninitialized pointer in error case (Coverity).
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b67d66f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
player.c
dlls/mfplay/player.c
+2
-1
No files found.
dlls/mfplay/player.c
View file @
312e0d51
...
...
@@ -1378,7 +1378,6 @@ static HRESULT media_item_create_sink_node(IUnknown *sink, IMFTopologyNode **nod
static
HRESULT
media_item_create_topology
(
struct
media_player
*
player
,
struct
media_item
*
item
,
IMFTopology
**
out
)
{
IMFTopologyNode
*
src_node
,
*
sink_node
;
BOOL
selected
,
video_added
=
FALSE
;
IMFStreamDescriptor
*
sd
;
IMFTopology
*
topology
;
...
...
@@ -1421,6 +1420,8 @@ static HRESULT media_item_create_topology(struct media_player *player, struct me
if
(
sink
)
{
IMFTopologyNode
*
src_node
=
NULL
,
*
sink_node
=
NULL
;
hr
=
media_item_create_source_node
(
item
,
sd
,
&
src_node
);
if
(
SUCCEEDED
(
hr
))
hr
=
media_item_create_sink_node
(
sink
,
&
sink_node
);
...
...
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