Hi, I'm a newbie to glibc contribution. I've followed the Contribution checklist but I'm not sure if I've done the right thing. I've not completed the FSF Copyright Assignment. I've read that "Copyright assignment for commulative changes by any one author of less than 15 lines do not require copyright assignment.". -- >8 -- --- malloc/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malloc/malloc.c b/malloc/malloc.c index e2d7b1b583..0e2e1747e0 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -1477,7 +1477,7 @@ checked_request2size (size_t req, size_t *sz) __nonnull (1) chunksize (p) - CHUNK_HDR_SZ : \ chunksize (p) - CHUNK_HDR_SZ + (chunk_is_mmapped (p) ? 0 : SIZE_SZ)) -/* If memory tagging is enabled the layout changes to accomodate the granule +/* If memory tagging is enabled the layout changes to accommodate the granule size, this is wasteful for small allocations so not done by default. Both the chunk header and user data has to be granule aligned. */ _Static_assert (__MTAG_GRANULE_SIZE <= CHUNK_HDR_SZ, -- 2.31.1