Changeset 37081 in vbox for trunk/src/VBox
- Timestamp:
- May 13, 2011 4:03:23 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetAdp/solaris/VBoxNetAdp-solaris.c
r37076 r37081 460 460 static int vboxNetAdpSolarisSend(gld_mac_info_t *pMacInfo, mblk_t *pMsg) 461 461 { 462 freemsgchain(pMsg); 462 while (pMsg) 463 { 464 mblk_t *pMsgNext = pMsg->b_cont; 465 pMsg->b_cont = NULL; 466 freemsg(pMsg); 467 pMsg = pMsgNext; 468 } 463 469 return GLD_SUCCESS; 464 470 }
Note:
See TracChangeset
for help on using the changeset viewer.