Projects
Factory:RISC-V:Base
util-linux
_service:tar_scm:backport-libblkid-hfs-fix-labe...
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File _service:tar_scm:backport-libblkid-hfs-fix-label-use-fuzzing.patch of Package util-linux
From 74e48269ee9a15e230e25d0e3d2e50f5b0ba2b04 Mon Sep 17 00:00:00 2001 From: Karel Zak <kzak@redhat.com> Date: Thu, 2 Jun 2022 16:02:54 +0200 Subject: [PATCH] libblkid: (hfs) fix label use [fuzzing] Reported-by: Thibault Guittet <tguittet@redhat.com> Signed-off-by: Karel Zak <kzak@redhat.com> --- libblkid/src/superblocks/hfs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libblkid/src/superblocks/hfs.c b/libblkid/src/superblocks/hfs.c index 9674b1481f..68cb30edbb 100644 --- a/libblkid/src/superblocks/hfs.c +++ b/libblkid/src/superblocks/hfs.c @@ -173,7 +173,10 @@ static int probe_hfs(blkid_probe pr, const struct blkid_idmag *mag) hfs_set_uuid(pr, hfs->finder_info.id, sizeof(hfs->finder_info.id)); - blkid_probe_set_label(pr, hfs->label, hfs->label_len); + size = hfs->label_len; + if ((size_t) size > sizeof(hfs->label)) + size = sizeof(hfs->label); + blkid_probe_set_label(pr, hfs->label, size); return 0; }
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2