Changeset 43752 in vbox
- Timestamp:
- Oct 26, 2012 8:19:41 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/socket.c
r41855 r43752 5 5 6 6 /* 7 * Copyright (C) 2006-201 0Oracle Corporation7 * Copyright (C) 2006-2012 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1138 1138 int tmperrno = errno; /* Don't clobber the real reason we failed */ 1139 1139 close(s); 1140 QSOCKET_LOCK(tcb); 1141 sofree(pData, so); 1142 QSOCKET_UNLOCK(tcb); 1140 if (sototcpcb(so)) 1141 tcp_close(pData, sototcpcb(so)); 1142 else 1143 sofree(pData, so); 1143 1144 /* Restore the real errno */ 1144 1145 errno = tmperrno;
Note:
See TracChangeset
for help on using the changeset viewer.