diff options
author | Vincent BENAYOUN <vincent.benayoun@trust-in-soft.com> | 2014-11-13 13:47:26 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-12-06 15:05:46 -0800 |
commit | 07729b8d98ea785c58acf3272fe875e44daeb260 (patch) | |
tree | f28e14cca12ae703e9c8953088d921eb4d644337 /fs/dlm/config.h | |
parent | a1b9c49bd036057cd4f2cfc9a97fd64d8b830deb (diff) |
inetdevice: fixed signed integer overflow
[ Upstream commit 84bc88688e3f6ef843aa8803dbcd90168bb89faf ]
There could be a signed overflow in the following code.
The expression, (32-logmask) is comprised between 0 and 31 included.
It may be equal to 31.
In such a case the left shift will produce a signed integer overflow.
According to the C99 Standard, this is an undefined behavior.
A simple fix is to replace the signed int 1 with the unsigned int 1U.
Signed-off-by: Vincent BENAYOUN <vincent.benayoun@trust-in-soft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/dlm/config.h')
0 files changed, 0 insertions, 0 deletions