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, Nov 5, 8:26 AM
Unknown Object (File)
Fri, Nov 1, 3:36 AM
Unknown Object (File)
Sep 27 2024, 6:53 PM
Unknown Object (File)
Sep 26 2024, 8:26 AM
Unknown Object (File)
Sep 18 2024, 2:01 AM
Unknown Object (File)
Sep 5 2024, 5:57 AM
Unknown Object (File)
Aug 21 2024, 1:01 PM
Unknown Object (File)
Aug 7 2024, 9:03 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)