CVSROOT: /cvs Module name: src Changes by: [email protected] 2021/07/22 05:07:17
Modified files:
sys/netmpls : mpls_input.c
Log message:
In revision 1.74 of netmpls/mpls_input.c we use rtisvalid(4) to check
the result returned by rtalloc(4) instead of a compare with NULL. Since
it's assumed this returned `rt' could be non NULL we should use
rtfree(4) in error path. rtfree(4) also allows NULL as input.
ok claudio@
