patch for netinet crash

看板DFBSD_submit作者時間21年前 (2005/01/07 21:01), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/2 (看更多)
There is a race condition that seems to be affecting only me, and apparently only when I run puTTY as a client. Here's a patch that fixes it, in addition to the one Matt submitted. =================================================================== RCS file: /home/dcvs/src/sys/netinet/ip_input.c,v retrieving revision 1.43 diff -u -r1.43 ip_input.c --- ip_input.c 29 Dec 2004 03:26:42 -0000 1.43 +++ ip_input.c 5 Jan 2005 21:22:40 -0000 @@ -742,6 +742,8 @@ */ if (m->m_pkthdr.rcvif->if_flags & IFF_BROADCAST) { TAILQ_FOREACH(ifa, &m->m_pkthdr.rcvif->if_addrhead, ifa_link) { + if (ifa == NULL) + continue; if (ifa->ifa_addr == NULL) /* shutdown/startup race */ continue; if (ifa->ifa_addr->sa_family != AF_INET) __________________________________ Do you Yahoo!? All your favorites on one personal page 阠Try My Yahoo! http://my.yahoo.com
文章代碼(AID): #11teWe00 (DFBSD_submit)
文章代碼(AID): #11teWe00 (DFBSD_submit)