From: Lennart Poettering Date: Tue, 12 Jul 2022 21:53:11 +0000 (+0200) Subject: tmpfiles: minor shortening of code X-Git-Tag: v252-rc1~636^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F24010%2Fhead;p=thirdparty%2Fsystemd.git tmpfiles: minor shortening of code --- diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 06d11f34b9b..0c50c8e1ee3 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -999,10 +999,8 @@ static int parse_xattrs_from_arg(Item *i) { int r; assert(i); - assert(i->argument); - - p = i->argument; + assert_se(p = i->argument); for (;;) { _cleanup_free_ char *name = NULL, *value = NULL, *xattr = NULL;