FreeBSD Bugzilla – Attachment #224928: set *mpp to NULL for
bug #255864
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
View
|
Details
|
Raw Unified
| Return to
bug 255864
Collapse All
|
Expand All
(-)
b/sys/dev/oce/oce_if.c (-1 / +1 lines)
Lines 1330-1338 oce_tso_setup(POCE_SOFTC sc, struct mbuf **mpp)
Link Here
1330
}
1330
}
1331
1331
1332
m = m_pullup(m, total_len);
1332
m = m_pullup(m, total_len);
1333
*mpp = m;
1333
if (!m)
1334
if (!m)
1334
return NULL;
1335
return NULL;
1335
*mpp = m;
1336
return m;
1336
return m;
1337
1337
1338
}
1338
}
Return to
bug 255864