Add missing {} in last commit.

This commit is contained in:
Max Laier 2005-06-10 15:53:21 +00:00
parent 8f47151b3b
commit 2c67c57c8b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=147251

View File

@ -1292,9 +1292,10 @@ bridge_dummynet(struct mbuf *m, struct ifnet *ifp)
* ever happen if a member interface is removed while packets are
* queued for it.
*/
if (sc == NULL)
if (sc == NULL) {
m_freem(m);
return;
}
bridge_enqueue(sc, ifp, m, 1);
}