CVSROOT: /cvs Module name: src Changes by: [email protected] 2017/08/14 02:31:00
Modified files:
sys/net : if_trunk.c
Log message:
The "ret" return value is reused and overwritten, potentially
returning 0 (success) on error instead of an error number. The caller
doesn't evaluate the return value, so it is good enough to return
ENOBUFS (non-0) on error and to remove "ret" in trunk_cast_start().
Coverity CID 1453105; Severity: Minor
OK mpi@
