Page MenuHomeFreeBSD

axgbe: Don't dereference NULL pointers
ClosedPublic

Authored by imp on May 21 2021, 4:51 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 28, 8:10 PM
Unknown Object (File)
Sat, Mar 28, 6:34 AM
Unknown Object (File)
Fri, Mar 27, 10:59 PM
Unknown Object (File)
Sun, Mar 22, 4:17 PM
Unknown Object (File)
Sat, Mar 21, 4:03 PM
Unknown Object (File)
Fri, Mar 6, 7:33 PM
Unknown Object (File)
Fri, Mar 6, 1:38 PM
Unknown Object (File)
Fri, Mar 6, 1:31 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.