Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
456
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
7b7a390b
Commit
7b7a390b
authored
15 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
XCB-XV: fix memleak when port grabbing fails
parent
8b65aa8a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/video_output/xcb/xvideo.c
+9
-10
9 additions, 10 deletions
modules/video_output/xcb/xvideo.c
with
9 additions
and
10 deletions
modules/video_output/xcb/xvideo.c
+
9
−
10
View file @
7b7a390b
...
...
@@ -335,7 +335,7 @@ static int Open (vlc_object_t *obj)
xcb_xv_adaptor_info_iterator_t
it
;
for
(
it
=
xcb_xv_query_adaptors_info_iterator
(
adaptors
);
it
.
rem
>
0
;
it
.
rem
>
0
&&
!
found_adaptor
;
xcb_xv_adaptor_info_next
(
&
it
))
{
const
xcb_xv_adaptor_info_t
*
a
=
it
.
data
;
...
...
@@ -380,10 +380,7 @@ static int Open (vlc_object_t *obj)
}
if
(
xfmt
==
NULL
)
/* No acceptable image formats */
{
free
(
r
);
continue
;
}
goto
skip_adaptor
;
/* Grab a port */
for
(
unsigned
i
=
0
;
i
<
a
->
num_ports
;
i
++
)
...
...
@@ -398,13 +395,15 @@ static int Open (vlc_object_t *obj)
if
(
result
==
0
)
{
p_sys
->
port
=
port
;
goto
grabbed_port
;
found_adaptor
=
true
;
break
;
}
msg_Dbg
(
vd
,
"cannot grab port %"
PRIu32
,
port
);
}
continue
;
if
(
!
found_adaptor
)
goto
skip_adaptor
;
grabbed_port:
/* Found port - initialize selected format */
name
=
strndup
(
xcb_xv_adaptor_info_name
(
a
),
a
->
name_size
);
if
(
name
!=
NULL
)
{
...
...
@@ -422,9 +421,9 @@ static int Open (vlc_object_t *obj)
fmt
.
i_gmask
=
xfmt
->
green_mask
;
fmt
.
i_bmask
=
xfmt
->
blue_mask
;
}
skip_adaptor:
free
(
r
);
found_adaptor
=
true
;
break
;
}
free
(
adaptors
);
if
(
!
found_adaptor
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment