From cb109e00c45c8e92b1020e6249aac4a212e7f72d Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 19 Apr 2025 03:41:45 +0900 Subject: [PATCH] repart: if partition already exists, required size may not be multiple of grain size See partition_min_size_with_padding(). Fixes #37178. --- src/repart/repart.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/repart/repart.c b/src/repart/repart.c index cb0a0bda3a..1b8d02ac1a 100644 --- a/src/repart/repart.c +++ b/src/repart/repart.c @@ -1124,7 +1124,6 @@ static bool context_allocate_partitions(Context *context, uint64_t *ret_largest_ /* How much do we need to fit? */ required = partition_min_size_with_padding(context, p); - assert(required % context->grain_size == 0); /* For existing partitions, we should verify that they'll actually fit */ if (PARTITION_EXISTS(p)) {