* Junio C. Hamano: > The offending lines are: > > if (idx_size != min_size) { > /* make sure we can deal with large pack offsets */ > off_t x = 0x7fffffffUL, y = 0xffffffffUL; > if (x > (x + 1) || y > (y + 1)) { > munmap(idx_map, idx_size); x and y must be unsigned for this test to work (signed overflow is undefined). - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html