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

(-)head/sys/netinet6/ip6_output.c (-1 / +2 lines)
Lines 1058-1064 done: Link Here
1058
	 * Release the route if using our private route, or if
1058
	 * Release the route if using our private route, or if
1059
	 * (with flowtable) we don't have our own reference.
1059
	 * (with flowtable) we don't have our own reference.
1060
	 */
1060
	 */
1061
	if (ro == &ip6route || ro->ro_flags & RT_NORTREF)
1061
	if (ro == &ip6route ||
1062
	    (ro != NULL && ro->ro_flags & RT_NORTREF))
1062
		RO_RTFREE(ro);
1063
		RO_RTFREE(ro);
1063
	return (error);
1064
	return (error);
1064
1065

Return to bug 211486