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)
Wed, May 15, 10:01 AM
Unknown Object (File)
Sat, May 11, 9:38 AM
Unknown Object (File)
Tue, May 7, 10:57 PM
Unknown Object (File)
Mar 9 2024, 7:44 PM
Unknown Object (File)
Dec 24 2023, 7:20 AM
Unknown Object (File)
Dec 20 2023, 3:50 AM
Unknown Object (File)
Dec 10 2023, 9:44 PM
Unknown Object (File)
Nov 28 2023, 4:54 PM
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)