1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-03 01:17:45 +03:00

nspawn: guard acl_free() with a NULL check

Inspired by #25957 there's one other place where we don't guard
acl_free() calls with a NULL check.

Fix that.

(cherry picked from commit 34680637e8)
(cherry picked from commit 4dabf90526)
This commit is contained in:
Lennart Poettering 2023-01-06 12:30:36 +01:00 committed by Luca Boccassi
parent 455193605d
commit d8b4ac7a17

View File

@ -181,7 +181,9 @@ static int patch_acls(int fd, const char *name, const struct stat *st, uid_t shi
if (S_ISDIR(st->st_mode)) { if (S_ISDIR(st->st_mode)) {
acl_free(acl); acl_free(acl);
acl_free(shifted);
if (shifted)
acl_free(shifted);
acl = shifted = NULL; acl = shifted = NULL;