Remove debugging variable from r143761.

This commit is contained in:
Gleb Smirnoff 2015-10-06 09:43:49 +00:00
parent c1d0909a53
commit 640082d498

View File

@ -1034,8 +1034,6 @@ m_pullup(struct mbuf *n, int len)
* the amount of empty space before the data in the new mbuf to be specified * the amount of empty space before the data in the new mbuf to be specified
* (in the event that the caller expects to prepend later). * (in the event that the caller expects to prepend later).
*/ */
int MSFail;
struct mbuf * struct mbuf *
m_copyup(struct mbuf *n, int len, int dstoff) m_copyup(struct mbuf *n, int len, int dstoff)
{ {
@ -1072,7 +1070,6 @@ m_copyup(struct mbuf *n, int len, int dstoff)
return (m); return (m);
bad: bad:
m_freem(n); m_freem(n);
MSFail++;
return (NULL); return (NULL);
} }