Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Marc-André Lureau
gst-plugins-good
Commits
d917c940
Commit
d917c940
authored
May 02, 2014
by
Vincent Penquerc'h
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
flxdec: fix integer overflow
Coverity 1139859
parent
60ba2d7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
gst/flx/gstflxdec.c
gst/flx/gstflxdec.c
+1
-1
No files found.
gst/flx/gstflxdec.c
View file @
d917c940
...
...
@@ -520,7 +520,7 @@ gst_flxdec_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
GST_LOG
(
"(FLC) oframe2 : 0x%08x"
,
flxh
->
oframe2
);
}
flxdec
->
size
=
(
flxh
->
width
*
flxh
->
height
);
flxdec
->
size
=
(
(
guint
)
flxh
->
width
*
(
guint
)
flxh
->
height
);
/* create delta and output frame */
flxdec
->
frame_data
=
g_malloc
(
flxdec
->
size
);
...
...
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