Date: Tue, 29 Jan 2002 14:30:59 -0800 From: Murray Stokely <murray@FreeBSD.org> To: Brent Cook <busterb@mail.utexas.edu> Cc: qa@freebsd.org Subject: Re: Signal 11 error with 4.5 RC3 Installer Message-ID: <20020129223059.GW9395@freebsdmall.com> In-Reply-To: <20020129015217.L5873-100000@ozma.union.utexas.edu> References: <20020129015217.L5873-100000@ozma.union.utexas.edu>
next in thread | previous in thread | raw e-mail | index | archive | help
--XZLT0nNRngx3qG4/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 29, 2002 at 01:55:36AM -0600, Brent Cook wrote: > Description: > Installer dies with a signal 11 error when the T option in the partition > editor is selected on an already existing partition to "Toggle New > Filesystem" Thanks for spotting this. I should be able to get this fix into the 4.5 release. - Murray Index: label.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /a/ncvs/src/release/sysinstall/Attic/label.c,v retrieving revision 1.98.2.7 diff -u -r1.98.2.7 label.c --- label.c 7 Jan 2002 07:59:30 -0000 1.98.2.7 +++ label.c 29 Jan 2002 14:27:49 -0000 @@ -1012,7 +1012,8 @@ break; =20 case 'T': /* Toggle newfs state */ - if (label_chunk_info[here].type =3D=3D PART_FILESYSTEM) { + if ((label_chunk_info[here].type =3D=3D PART_FILESYSTEM) && + (label_chunk_info[here].c->private_data)) { PartInfo *pi =3D ((PartInfo *)label_chunk_info[here].c->private_data); =20 if (!pi->newfs) --XZLT0nNRngx3qG4/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (SunOS) Comment: For info see http://www.gnupg.org iD8DBQE8VyKitNcQog5FH30RAhrGAKCfQlK4FQkMw+py7+3vS1QdlXj5KwCgnY8w RVOCW50avWp0tqxz5rugNEU= =o6nx -----END PGP SIGNATURE----- --XZLT0nNRngx3qG4/-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-qa" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020129223059.GW9395>