svn commit: r212736 - stable/8/sys/net
Gleb Smirnoff
glebius at FreeBSD.org
Thu Sep 16 15:00:43 UTC 2010
Author: glebius
Date: Thu Sep 16 15:00:43 2010
New Revision: 212736
URL: http://svn.freebsd.org/changeset/base/212736
Log:
MFhead 210533:
Don't check malloc(M_WAITOK) result.
Modified:
stable/8/sys/net/if_llatbl.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
Modified: stable/8/sys/net/if_llatbl.c
==============================================================================
--- stable/8/sys/net/if_llatbl.c Thu Sep 16 14:55:22 2010 (r212735)
+++ stable/8/sys/net/if_llatbl.c Thu Sep 16 15:00:43 2010 (r212736)
@@ -234,8 +234,6 @@ lltable_init(struct ifnet *ifp, int af)
register int i;
llt = malloc(sizeof(struct lltable), M_LLTABLE, M_WAITOK);
- if (llt == NULL)
- return (NULL);
llt->llt_af = af;
llt->llt_ifp = ifp;
More information about the svn-src-stable
mailing list