Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Oct 2011 11:38:40 -0700
From:      Colin Percival <cperciva@freebsd.org>
To:        Ed Schouten <ed@80386.nl>
Cc:        svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org
Subject:   Re: svn commit: r226359 - head/usr.bin/look
Message-ID:  <4E9B24B0.60106@freebsd.org>
In-Reply-To: <20111016182033.GS91943@hoeg.nl>
References:  <201110140724.p9E7OmMB052118@svn.freebsd.org> <4E9B1287.4050507@freebsd.org> <20111016182033.GS91943@hoeg.nl>

next in thread | previous in thread | raw e-mail | index | archive | help
On 10/16/11 11:20, Ed Schouten wrote:
> Hmmm... Casting to size_t is not the way to go, but off_t also should be
> avoided. We can assume st_size is non-negative, so we should do
> something like this, right?
> 
> -		if (sb.st_size > (off_t)SIZE_T_MAX)
> +		if ((uintmax_t)sb.st_size > (uintmax_t)SIZE_T_MAX)

That should work.  I've also solved this problem in the past with
	if ((sizeof(off_t) > sizeof(size_t)) &&
	    (sb.st_size > (off_t)

-- 
Colin Percival
Security Officer, FreeBSD | freebsd.org | The power to serve
Founder / author, Tarsnap | tarsnap.com | Online backups for the truly paranoid



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4E9B24B0.60106>