]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tmpfile: make failure in path_extract_filename() non-critical
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 9 Jan 2023 01:53:20 +0000 (10:53 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 9 Jan 2023 01:57:50 +0000 (10:57 +0900)
src/tmpfiles/offline-passwd.c

index 085286e99213ad340eadf8b31f535a2fa4248b51..fe866f8ca1b503f544fd3a9a1dd614a61da50332 100644 (file)
@@ -9,10 +9,9 @@
 DEFINE_PRIVATE_HASH_OPS_WITH_KEY_DESTRUCTOR(uid_gid_hash_ops, char, string_hash_func, string_compare_func, free);
 
 static int open_passwd_file(const char *root, const char *fname, FILE **ret_file) {
-        _cleanup_free_ char *p = NULL, *bn = NULL;
+        _cleanup_free_ char *p = NULL;
         _cleanup_close_ int fd = -EBADF;
         _cleanup_fclose_ FILE *f = NULL;
-        int r;
 
         fd = chase_symlinks_and_open(fname, root, CHASE_PREFIX_ROOT, O_RDONLY|O_CLOEXEC, &p);
         if (fd < 0)
@@ -24,11 +23,12 @@ static int open_passwd_file(const char *root, const char *fname, FILE **ret_file
 
         TAKE_FD(fd);
 
-        r = path_extract_filename(fname, &bn);
-        if (r < 0)
-                return r;
+        if (DEBUG_LOGGING) {
+                _cleanup_free_ char *bn = NULL;
 
-        log_debug("Reading %s entries from %s...", bn, p);
+                (void) path_extract_filename(fname, &bn);
+                log_debug("Reading %s entries from %s...", strna(bn), p);
+        }
 
         *ret_file = TAKE_PTR(f);
         return 0;