Page MenuHomeFreeBSD

axgbe: Don't dereference NULL pointers
ClosedPublic

Authored by imp on May 21 2021, 4:51 AM.
Tags
None
Referenced Files
F153331805: D30373.id89568.diff
Mon, Apr 20, 1:01 PM
F153324310: D30373.diff
Mon, Apr 20, 11:52 AM
F153324188: D30373.diff
Mon, Apr 20, 11:52 AM
Unknown Object (File)
Wed, Apr 15, 11:32 PM
Unknown Object (File)
Sat, Apr 11, 9:57 AM
Unknown Object (File)
Thu, Apr 9, 10:42 PM
Unknown Object (File)
Thu, Apr 9, 9:11 AM
Unknown Object (File)
Thu, Apr 9, 7:22 AM
Subscribers

Details

Summary

if (sb == NULL) { ... sb->s_error } is going to be a bad time. Return
ENOMEM when we cannot allocate an sbuf for the sysctl rather than
dereferencing the NULL pointer just returned.

Sponsored by: Netflix

Diff Detail

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

Event Timeline

imp requested review of this revision.May 21 2021, 4:51 AM
imp created this revision.
This revision is now accepted and ready to land.May 21 2021, 4:09 PM
allanjude added a subscriber: allanjude.

Reviewed By: allanjude

This revision was automatically updated to reflect the committed changes.