Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
806d4259
Commit
806d4259
authored
Jul 21, 2013
by
Rémi Denis-Courmont
Browse files
vmem: fix use of uninitialized memory
parent
7d3fc2a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/video_output/vmem.c
View file @
806d4259
...
...
@@ -253,16 +253,16 @@ static picture_pool_t *Pool(vout_display_t *vd, unsigned count)
picture_t
*
pictures
[
count
];
for
(
unsigned
i
=
0
;
i
<
count
;
i
++
)
{
picture_resource_t
rsc
;
rsc
.
p_sys
=
malloc
(
sizeof
(
*
rsc
.
p_sys
));
if
(
unlikely
(
!
rsc
.
p_sys
))
{
picture_sys_t
*
picsys
=
malloc
(
sizeof
(
*
picsys
));
if
(
unlikely
(
picsys
==
NULL
))
{
count
=
i
;
break
;
}
picsys
->
sys
=
sys
;
picsys
->
id
=
NULL
;
rsc
.
p_sys
->
sys
=
sys
;
rsc
.
p_sys
->
id
=
NULL
;
picture_resource_t
rsc
=
{
.
p_sys
=
picsys
};
for
(
unsigned
i
=
0
;
i
<
PICTURE_PLANE_MAX
;
i
++
)
{
/* vmem-lock is responsible for the allocation */
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment