The expression info->free+size is technically undefined behaviour in
exactly the case we want to test for. Moreover, the compiler is likely
to translate the expression to
where there's at least a theoretical chance that the LHS could wrap
around 0, giving a false negative.
This might as well be written using pointer subtraction avoiding these
issues.
Signed-off-by: Rasmus Villemoes <redacted> Signed-off-by: Nguyễn Thái Ngọc Duy <redacted> Reviewed-by: Jeff King <redacted> Signed-off-by: Junio C Hamano <redacted>