From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 08/13] installer: Fix use of uninitialized variable Date: Fri, 05 Apr 2024 12:59:37 +0000 Message-ID: <20240405125942.1803058-8-michael.tremer@ipfire.org> In-Reply-To: <20240405125942.1803058-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3667580891390175639==" List-Id: --===============3667580891390175639== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Michael Tremer --- src/installer/hw.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/installer/hw.c b/src/installer/hw.c index 039f8ac26..77c2d546e 100644 --- a/src/installer/hw.c +++ b/src/installer/hw.c @@ -132,11 +132,12 @@ static int strstartswith(const char* a, const char* b) { } static int setup_loop_device(const char* source, const char* device) { + int device_fd = -1; + int file_fd = open(source, O_RDWR); if (file_fd < 0) goto ERROR; - int device_fd = -1; if ((device_fd = open(device, O_RDWR)) < 0) goto ERROR; -- 2.39.2 --===============3667580891390175639==--