Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gst-plugins-good1.0
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pkg
gst-plugins-good1.0
Commits
10ebd0c4
Commit
10ebd0c4
authored
1 year ago
by
Apertis CI robot
Browse files
Options
Downloads
Plain Diff
Merge updates from debian/bookworm-security
parents
392ff9b0
0de00e71
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!16
Update from debian/bookworm-security for apertis/v2024dev3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
debian/patches/GST-2023-0001.patch
+29
-0
29 additions, 0 deletions
debian/patches/GST-2023-0001.patch
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
with
36 additions
and
0 deletions
debian/changelog
+
6
−
0
View file @
10ebd0c4
gst-plugins-good1.0 (1.22.0-5+deb12u1) bookworm-security; urgency=medium
* GST-2023-0001
-- Moritz Mühlenhoff <jmm@debian.org> Thu, 29 Jun 2023 20:21:18 +0200
gst-plugins-good1.0 (1.22.0-5+apertis1) apertis; urgency=medium
* Sync updates from Debian Bookworm. Remaining Apertis changes:
...
...
This diff is collapsed.
Click to expand it.
debian/patches/GST-2023-0001.patch
0 → 100644
+
29
−
0
View file @
10ebd0c4
--- gst-plugins-good1.0-1.22.0.orig/gst/audioparsers/gstflacparse.c
+++ gst-plugins-good1.0-1.22.0/gst/audioparsers/gstflacparse.c
@@ -1111,6 +1111,7 @@
gst_flac_parse_handle_picture (GstFlacPa
GstMapInfo map;
guint32 img_len = 0, img_type = 0;
guint32 img_mimetype_len = 0, img_description_len = 0;
+ const guint8 *img_data;
gst_buffer_map (buffer, &map, GST_MAP_READ);
gst_byte_reader_init (&reader, map.data, map.size);
@@ -1137,7 +1138,7 @@
gst_flac_parse_handle_picture (GstFlacPa
if (!gst_byte_reader_get_uint32_be (&reader, &img_len))
goto error;
- if (gst_byte_reader_get_pos (&reader) + img_len > map.size)
+ if (!gst_byte_reader_get_data (&reader, img_len, &img_data))
goto error;
GST_INFO_OBJECT (flacparse, "Got image of %d bytes", img_len);
@@ -1146,8 +1147,7 @@
gst_flac_parse_handle_picture (GstFlacPa
if (flacparse->tags == NULL)
flacparse->tags = gst_tag_list_new_empty ();
- gst_tag_list_add_id3_image (flacparse->tags,
- map.data + gst_byte_reader_get_pos (&reader), img_len, img_type);
+ gst_tag_list_add_id3_image (flacparse->tags, img_data, img_len, img_type);
}
gst_buffer_unmap (buffer, &map);
This diff is collapsed.
Click to expand it.
debian/patches/series
+
1
−
0
View file @
10ebd0c4
Skip-failing-tests.patch
GST-2023-0001.patch
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