diff --git a/udev/lib/libudev-util.c b/udev/lib/libudev-util.c index f4e78850f93..1cd18c89069 100644 --- a/udev/lib/libudev-util.c +++ b/udev/lib/libudev-util.c @@ -398,7 +398,7 @@ int udev_util_replace_chars(char *str, const char *white) } /* if space is allowed, replace whitespace with ordinary space */ - if (isspace(str[i]) && strchr(white, ' ') != NULL) { + if (isspace(str[i]) && white != NULL && strchr(white, ' ') != NULL) { str[i] = ' '; i++; replaced++;