diff options
author | Amitanand.Chikorde <amitanand.chikorde@kpit.com> | 2020-07-30 15:18:48 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2020-07-30 18:55:50 +0200 |
commit | e7e954243a17cceb5278aac6249ee0dcc119b1eb (patch) | |
tree | 7f770042355eb430db17ca54e625adf955e1b8c8 /src | |
parent | pid1: stop limiting size of /dev/shm (diff) | |
download | systemd-e7e954243a17cceb5278aac6249ee0dcc119b1eb.tar.xz systemd-e7e954243a17cceb5278aac6249ee0dcc119b1eb.zip |
udev: fix codesonar warnings
Fixed below systemd codesonar warning.
isprint() is invoked here with an argument of signed
type char, but only has defined behavior for int arguments that are
either representable as unsigned char or equal to the value
of macro EOF(-1).
As per codesonar report, in a number of libc implementations, isprint()
function implemented using lookup tables (arrays): passing in a
negative value can result in a read underrun.
Diffstat (limited to 'src')
-rw-r--r-- | src/udev/udevadm-info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udevadm-info.c b/src/udev/udevadm-info.c index 7eec84abd5..ae6d8caf54 100644 --- a/src/udev/udevadm-info.c +++ b/src/udev/udevadm-info.c @@ -100,7 +100,7 @@ static int print_all_attributes(sd_device *device, bool is_parent) { /* skip nonprintable attributes */ len = strlen(value); - while (len > 0 && isprint(value[len-1])) + while (len > 0 && isprint((unsigned char) value[len-1])) len--; if (len > 0) continue; |