CVSROOT: /cvs Module name: src Changes by: [email protected] 2015/08/16 05:28:31
Modified files:
sys/net : if.c
Log message:
avoid a toctou problem in if_input in the bpf handling.
load ifp->if_bpf into a local variable, test that, and pass it to bpf.
this is instead of instead of assuming ifp->if_bpf wont change between
checking it and passing it to bpf.
