aboutsummaryrefslogtreecommitdiff
path: root/isofs
diff options
context:
space:
mode:
authorfree_software@xobnur.uk <free_software@xobnur.uk>2024-05-05 17:00:50 -0400
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-05-06 12:47:54 +0200
commitb4d1e3e3a9a8ff17aaef006289c05830801c7c52 (patch)
tree666d13886b641757885474a389200bbd8e4cab2c /isofs
parent19b16e8e8c730fe7383db5fdea82500070ceda56 (diff)
downloadhurd-b4d1e3e3a9a8ff17aaef006289c05830801c7c52.tar.gz
hurd-b4d1e3e3a9a8ff17aaef006289c05830801c7c52.tar.bz2
hurd-b4d1e3e3a9a8ff17aaef006289c05830801c7c52.zip
isofs: fix rock-ridge detection
The field length check should check for field overflow. Message-ID: <8e69aefc-8c08-4189-a5b9-974303427597@xobnur.uk>
Diffstat (limited to 'isofs')
-rw-r--r--isofs/rr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/isofs/rr.c b/isofs/rr.c
index 4cd97924..b6d85446 100644
--- a/isofs/rr.c
+++ b/isofs/rr.c
@@ -192,7 +192,7 @@ rrip_work (struct dirrect *dr, struct rrip_lookup *rr,
/* Make sure the ER field is valid */
if ((void *) er->more + er->len_id + er->len_des + er->len_src
- < terminus)
+ > terminus)
goto next_field;
/* Check for rock-ridge */