Re: [PATCH v3 2/2] bsearch: prevent overflow when computing middle comparison element

From: Rusty Russell
Date: Tue Nov 10 2009 - 19:18:55 EST


On Tue, 10 Nov 2009 02:12:31 am Andrà Goddard Rosa wrote:
> It's really difficult to occur in practice because the sum of the lower
> and higher limits must overflow an int variable, but it can occur when
> working with large arrays. We'd better safe than sorry by avoiding this
> overflow situation when computing the middle element for comparison.

I always thought the obvious answer was:

mid = start + (end - start)/2;

Your version does nothing for 32 bit platforms...
Rusty.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/