From 0557f82650efbed618e03f557a91cf724b29b533 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 11 Nov 2024 17:19:26 +0100 Subject: [PATCH] dissect-image: remove dead code --- src/shared/dissect-image.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/shared/dissect-image.c b/src/shared/dissect-image.c index f9418754a8b..39c5c8a21a2 100644 --- a/src/shared/dissect-image.c +++ b/src/shared/dissect-image.c @@ -4271,7 +4271,6 @@ int mountfsd_mount_image( _cleanup_close_ int image_fd = -EBADF; _cleanup_(sd_varlink_unrefp) sd_varlink *vl = NULL; _cleanup_free_ char *ps = NULL; - unsigned max_fd = UINT_MAX; const char *error_id; int r; @@ -4365,9 +4364,6 @@ int mountfsd_mount_image( return log_error_errno(r, "Failed to parse partition data: %m"); if (pp.fsmount_fd_idx != UINT_MAX) { - if (max_fd == UINT_MAX || pp.fsmount_fd_idx > max_fd) - max_fd = pp.fsmount_fd_idx; - fsmount_fd = sd_varlink_take_fd(vl, pp.fsmount_fd_idx); if (fsmount_fd < 0) return fsmount_fd; -- 2.47.3