
19 Apr
2016
19 Apr
'16
12:05 a.m.
On Mon, Apr 18, 2016 at 01:55:55PM +0200, Andreas Färber wrote:
- if ((unsigned long long)priv + sizeof(*priv) > (1ULL << 32)) {
=?
I think ">" is correct, the (unfortunate) case
priv + size == (1 << 32)
is still acceptable because the last byte used by the structure would be (priv + size - 1).
Beniamino