View | Details | Raw Unified | Return to bug 177808
Collapse All | Expand All

(-)b/sys/netpfil/pf/pf.c (+8 lines)
Lines 6009-6014 done: Link Here
6009
		*m0 = NULL;
6009
		*m0 = NULL;
6010
		action = PF_PASS;
6010
		action = PF_PASS;
6011
		break;
6011
		break;
6012
	case PF_DROP:
6013
		m_freem(*m0);
6014
		*m0 = NULL;
6015
		break;
6012
	default:
6016
	default:
6013
		/* pf_route() returns unlocked. */
6017
		/* pf_route() returns unlocked. */
6014
		if (r->rt) {
6018
		if (r->rt) {
Lines 6382-6387 done: Link Here
6382
		*m0 = NULL;
6386
		*m0 = NULL;
6383
		action = PF_PASS;
6387
		action = PF_PASS;
6384
		break;
6388
		break;
6389
	case PF_DROP:
6390
		m_freem(*m0);
6391
		*m0 = NULL;
6392
		break;
6385
	default:
6393
	default:
6386
		/* pf_route6() returns unlocked. */
6394
		/* pf_route6() returns unlocked. */
6387
		if (r->rt) {
6395
		if (r->rt) {

Return to bug 177808