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
Seungha Yang
gst-plugins-base
Commits
cec628a4
Commit
cec628a4
authored
Mar 11, 2011
by
Trond Andersen
Committed by
Sebastian Dröge
Apr 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtcpbuffer: fix invalid read in validation of padding in rtcp packet
parent
0f8edca9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
gst-libs/gst/rtp/gstrtcpbuffer.c
gst-libs/gst/rtp/gstrtcpbuffer.c
+1
-1
No files found.
gst-libs/gst/rtp/gstrtcpbuffer.c
View file @
cec628a4
...
...
@@ -163,7 +163,7 @@ gst_rtcp_buffer_validate_data (guint8 * data, guint len)
goto
wrong_length
;
/* get padding */
pad_bytes
=
data
[
len
-
1
];
pad_bytes
=
data
[
data_
len
-
1
];
if
(
data_len
!=
pad_bytes
)
goto
wrong_padding
;
}
...
...
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