- Timestamp:
- Sep 24, 2007 4:37:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DrvHostSerial.cpp
r5008 r5010 284 284 285 285 tcsetattr(pData->DeviceFile, TCSANOW, termiosSetup); 286 RTMem Free(termiosSetup);286 RTMemTmpFree(termiosSetup); 287 287 #elif defined(RT_OS_WINDOWS) 288 288 comSetup = (LPDCB)RTMemTmpAllocZ(sizeof(DCB)); … … 380 380 381 381 SetCommState(pData->hDeviceFile, comSetup); 382 RTMem Free(comSetup);382 RTMemTmpFree(comSetup); 383 383 #endif /* RT_OS_WINDOWS */ 384 384 … … 738 738 #else 739 739 740 pData->DeviceFile = NIL_RTFILE;741 740 rc = RTFileOpen(&pData->DeviceFile, pData->pszDevicePath, RTFILE_O_OPEN | RTFILE_O_READWRITE); 742 741
Note:
See TracChangeset
for help on using the changeset viewer.