mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-22 13:33:56 +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
)
This commit is contained in:
parent
a11a949c43
commit
4dabf90526
@ -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)) {
|
||||
acl_free(acl);
|
||||
acl_free(shifted);
|
||||
|
||||
if (shifted)
|
||||
acl_free(shifted);
|
||||
|
||||
acl = shifted = NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user