From: Jane Malalane Date: Tue, 27 Jul 2021 18:47:15 +0000 (+0100) Subject: xen/lib: Fix strcmp() and strncmp() X-Git-Tag: archive/raspbian/4.16.0+51-g0941d6cb-1+rpi1~2^2~42^2~306 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3747a2bb67daa5a8baeff6cda57dc98a5ef79c3e;p=xen.git xen/lib: Fix strcmp() and strncmp() The C standard requires that each character be compared as unsigned char. Xen's current behaviour compares as signed char, which changes the answer when chars with a value greater than 0x7f are used. Suggested-by: Andrew Cooper Signed-off-by: Jane Malalane Reviewed-by: Ian Jackson --- diff --git a/xen/lib/strcmp.c b/xen/lib/strcmp.c index 465f1c4191..f85c1e8741 100644 --- a/xen/lib/strcmp.c +++ b/xen/lib/strcmp.c @@ -11,14 +11,16 @@ */ int (strcmp)(const char *cs, const char *ct) { - register signed char __res; + unsigned char *csu = (unsigned char *)cs; + unsigned char *ctu = (unsigned char *)ct; + int res; while (1) { - if ((__res = *cs - *ct++) != 0 || !*cs++) + if ((res = *csu - *ctu++) != 0 || !*csu++) break; } - return __res; + return res; } /* diff --git a/xen/lib/strncmp.c b/xen/lib/strncmp.c index 9af7fa1c99..1480f58c2e 100644 --- a/xen/lib/strncmp.c +++ b/xen/lib/strncmp.c @@ -12,15 +12,17 @@ */ int (strncmp)(const char *cs, const char *ct, size_t count) { - register signed char __res = 0; + unsigned char *csu = (unsigned char *)cs; + unsigned char *ctu = (unsigned char *)ct; + int res = 0; while (count) { - if ((__res = *cs - *ct++) != 0 || !*cs++) + if ((res = *csu - *ctu++) != 0 || !*csu++) break; count--; } - return __res; + return res; } /*