Page MenuHomeFreeBSD

bsdinstall: Remove set but unused variable.
AbandonedPublic

Authored by jhb on Jun 20 2023, 4:33 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Aug 5, 12:18 PM
Unknown Object (File)
Fri, Jul 25, 11:43 AM
Unknown Object (File)
Mon, Jul 21, 9:50 AM
Unknown Object (File)
Jul 13 2025, 1:48 PM
Unknown Object (File)
Jul 9 2025, 10:39 AM
Unknown Object (File)
Jun 17 2025, 6:08 PM
Unknown Object (File)
Jun 14 2025, 8:38 AM
Unknown Object (File)
Jun 8 2025, 3:38 AM
Subscribers

Details

Reviewers
nwhitehorn
Summary

Other places in this code do not check the return value of
geom_gettree so just remove the variable to stay consistent.

While here, fix a nearby style bug.

Reported by: GCC

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 52194
Build 49085: arc lint + arc unit

Event Timeline

jhb requested review of this revision.Jun 20 2023, 4:33 PM
emaste added inline comments.
usr.sbin/bsdinstall/partedit/scripted.c
77

maybe we should handle the error instead?
will provider_for_name handle the case that geom_gettree failed?

Possibly we could add the error handling, but it's not something we've needed since bsdinstall was written?

usr.sbin/bsdinstall/partedit/scripted.c
100

We don't handle the error here.

187

Or here.

usr.sbin/bsdinstall/partedit/scripted.c
77

See D40779 for an alternate version that tries to handle the errors (though there isn't really a good recourse if this fails in most cases)