From: Lennart Poettering Date: Mon, 11 Nov 2024 16:19:26 +0000 (+0100) Subject: dissect-image: remove dead code X-Git-Tag: v257-rc2~32^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0557f82650efbed618e03f557a91cf724b29b533;p=thirdparty%2Fsystemd.git dissect-image: remove dead code --- 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;