From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 13/13] installer: Fix using uninitialized variables Date: Fri, 05 Apr 2024 12:59:42 +0000 Message-ID: <20240405125942.1803058-13-michael.tremer@ipfire.org> In-Reply-To: <20240405125942.1803058-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8480160956258463454==" List-Id: --===============8480160956258463454== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Michael Tremer --- 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] =3D "Disclaimer\n"; =20 char* sourcedrive =3D NULL; + struct hw_destination* destination =3D NULL; + struct hw_disk** selected_disks =3D NULL; int rc =3D 0; char commandstring[STRING_SIZE]; int choice; @@ -589,8 +591,6 @@ int main(int argc, char *argv[]) { =20 // Scan for disks to install on. struct hw_disk** disks =3D hw_find_disks(hw, sourcedrive); - - struct hw_disk** selected_disks =3D NULL; unsigned int num_selected_disks =3D 0; =20 // Check how many disks have been found and what @@ -720,8 +720,7 @@ int main(int argc, char *argv[]) { filesystem =3D filesystems[fs_choice].fstype; } =20 - struct hw_destination* destination =3D hw_make_destination(hw, part_type, - selected_disks, config.disable_swap, filesystem); + destination =3D hw_make_destination(hw, part_type, selected_disks, config.d= isable_swap, filesystem); =20 if (!destination) { errorbox(_("Your harddisk is too small.")); --=20 2.39.2 --===============8480160956258463454==--