[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH hurd] isofs: fix rock-ridge detection
From: |
free_software |
Subject: |
[PATCH hurd] isofs: fix rock-ridge detection |
Date: |
Sun, 5 May 2024 17:00:50 -0400 |
User-agent: |
Mozilla Thunderbird |
The field length check should check for field overflow.
---
isofs/rr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 */
- [PATCH hurd] isofs: fix rock-ridge detection,
free_software <=