summaryrefslogtreecommitdiff
path: root/lib/psci/psci_main.c
diff options
context:
space:
mode:
authordp-arm <dimitris.papastamos@arm.com>2016-12-06 15:20:25 +0000
committerdp-arm <dimitris.papastamos@arm.com>2016-12-13 11:16:31 +0000
commitafc03aebd37b050e1820ba3a4061605d15970577 (patch)
treeb0c739f4dd7f9f596c45496b196dda07da2e3a59 /lib/psci/psci_main.c
parent919ad05ecb8fab23f91a37783dc5f246847c7bd2 (diff)
stdlib: Fix signedness issue in memcmp()
There is no guarantee on the signedness of char. It can be either signed or unsigned. On ARM it is unsigned and hence this memcmp() implementation works as intended. On other machines, char can be signed (x86 for example). In that case (and assuming a 2's complement implementation), interpreting a bit-pattern of 0xFF as signed char can yield -1. If *s1 is 0 and *s2 is 255 then the difference *s1 - *s2 should be negative. The C integer promotion rules guarantee that the unsigned chars will be converted to int before the operation takes place. The current implementation will return a positive value (0 - (-1)) instead, which is wrong. Fix it by changing the signedness to unsigned to avoid surprises for anyone using this code on non-ARM systems. Change-Id: Ie222fcaa7c0c4272d7a521a6f2f51995fd5130cc Signed-off-by: dp-arm <dimitris.papastamos@arm.com>
Diffstat (limited to 'lib/psci/psci_main.c')
0 files changed, 0 insertions, 0 deletions