mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-26 10:03:40 +03:00
core: fix use of uninitialized value
Fixes https://github.com/systemd/systemd/pull/27504#issuecomment-1533354787.
This commit is contained in:
parent
b96cc40a95
commit
6cb105b877
@ -266,7 +266,7 @@ static void manager_deserialize_uid_refs_one_internal(
|
||||
|
||||
r = parse_uid(value, &uid);
|
||||
if (r < 0 || uid == 0) {
|
||||
log_debug("Unable to parse UID/GID reference serialization: " UID_FMT, uid);
|
||||
log_debug("Unable to parse UID/GID reference serialization: %s", value);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user