1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-12 13:18:14 +03:00

core/exec-credential: use rmdir_and_freep at one more place

This commit is contained in:
Mike Yuan 2023-10-11 23:16:19 +08:00
parent 3bb424c837
commit 2cb6b3b734

View File

@ -932,7 +932,8 @@ int exec_setup_credentials(
r = safe_fork("(sd-mkdcreds)", FORK_DEATHSIG|FORK_WAIT|FORK_NEW_MOUNTNS, NULL);
if (r < 0) {
_cleanup_free_ char *t = NULL, *u = NULL;
_cleanup_(rmdir_and_freep) char *u = NULL; /* remove the temporary workspace if we can */
_cleanup_free_ char *t = NULL;
/* If this is not a privilege or support issue then propagate the error */
if (!ERRNO_IS_NOT_SUPPORTED(r) && !ERRNO_IS_PRIVILEGE(r))
@ -967,9 +968,6 @@ int exec_setup_credentials(
false, /* it's OK to fall back to a plain directory if we can't mount anything */
uid,
gid);
(void) rmdir(u); /* remove the workspace again if we can. */
if (r < 0)
return r;