public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 13/13] installer: Fix using uninitialized variables
Date: Fri, 05 Apr 2024 12:59:42 +0000	[thread overview]
Message-ID: <20240405125942.1803058-13-michael.tremer@ipfire.org> (raw)
In-Reply-To: <20240405125942.1803058-1-michael.tremer@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 1316 bytes --]

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 src/installer/main.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/installer/main.c b/src/installer/main.c
index 944ffa593..70a240ccb 100644
--- a/src/installer/main.c
+++ b/src/installer/main.c
@@ -368,6 +368,8 @@ int main(int argc, char *argv[]) {
 	char discl_msg[40000] =	"Disclaimer\n";
 
 	char* sourcedrive = NULL;
+	struct hw_destination* destination = NULL;
+	struct hw_disk** selected_disks = NULL;
 	int rc = 0;
 	char commandstring[STRING_SIZE];
 	int choice;
@@ -589,8 +591,6 @@ int main(int argc, char *argv[]) {
 
 	// Scan for disks to install on.
 	struct hw_disk** disks = hw_find_disks(hw, sourcedrive);
-
-	struct hw_disk** selected_disks = NULL;
 	unsigned int num_selected_disks = 0;
 
 	// Check how many disks have been found and what
@@ -720,8 +720,7 @@ int main(int argc, char *argv[]) {
 		filesystem = filesystems[fs_choice].fstype;
 	}
 
-	struct hw_destination* destination = hw_make_destination(hw, part_type,
-		selected_disks, config.disable_swap, filesystem);
+	destination = hw_make_destination(hw, part_type, selected_disks, config.disable_swap, filesystem);
 
 	if (!destination) {
 		errorbox(_("Your harddisk is too small."));
-- 
2.39.2


      parent reply	other threads:[~2024-04-05 12:59 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-05 12:59 [PATCH 01/13] installer: Update language files Michael Tremer
2024-04-05 12:59 ` [PATCH 02/13] installer: Translate BTRFS string Michael Tremer
2024-04-05 12:59 ` [PATCH 03/13] installer: Remove obsolete macros from configure script Michael Tremer
2024-04-05 12:59 ` [PATCH 04/13] installer: Fix lots of constify issues Michael Tremer
2024-04-05 12:59 ` [PATCH 05/13] installer: Make btrfs functions static Michael Tremer
2024-04-05 12:59 ` [PATCH 06/13] installer: Make hw_mkdir static Michael Tremer
2024-04-05 12:59 ` [PATCH 07/13] installer: Remove unused variables Michael Tremer
2024-04-05 12:59 ` [PATCH 08/13] installer: Fix use of uninitialized variable Michael Tremer
2024-04-05 12:59 ` [PATCH 09/13] installer: Correctly pass mount flags Michael Tremer
2024-04-05 12:59 ` [PATCH 10/13] installer: Replace all uses of strncpy with snprintf Michael Tremer
2024-04-05 12:59 ` [PATCH 11/13] installer: Pass correct length of hostname to sethostname() Michael Tremer
2024-04-05 12:59 ` [PATCH 12/13] installer: Fix more const warnings Michael Tremer
2024-04-05 12:59 ` Michael Tremer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240405125942.1803058-13-michael.tremer@ipfire.org \
    --to=michael.tremer@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox