Page MenuHomeFreeBSD

libsa: Disable -Wdangling-pointer for zfs.c.
ClosedPublic

Authored by jhb on Nov 29 2022, 7:50 PM.
Tags
None
Referenced Files
F102745680: D37533.diff
Sat, Nov 16, 3:30 PM
Unknown Object (File)
Oct 7 2024, 9:56 PM
Unknown Object (File)
Oct 5 2024, 12:35 PM
Unknown Object (File)
Oct 5 2024, 1:32 AM
Unknown Object (File)
Sep 24 2024, 10:27 PM
Unknown Object (File)
Sep 23 2024, 2:36 AM
Unknown Object (File)
Sep 20 2024, 9:44 AM
Unknown Object (File)
Sep 8 2024, 11:35 PM
Subscribers

Details

Summary

GCC 12 warns about a dangling pointer to 'objid' in
zfs_bootenv_initial(). However, this appears to be a false positive
as the pointer to 'objid' is only passed to zfs_lookup_dataset() but
not saved anywhere that outlives the lifetime of the
zfs_bootenv_initial() function.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

jhb requested review of this revision.Nov 29 2022, 7:50 PM
This revision is now accepted and ready to land.Nov 29 2022, 8:14 PM

Is it worth mentioning the false positive in a src comment?

Is it worth mentioning the false positive in a src comment?

I think the ZFS code is the vendor OpenZFS code so would be a local diff, so probably not.

This revision was automatically updated to reflect the committed changes.