Changeset 74906 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Oct 18, 2018 8:11:31 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/VideoRec.cpp
r74904 r74906 233 233 it->second->Clear(); 234 234 delete it->second; 235 it = Map.erase(it); 235 Map.erase(it); 236 it = Map.begin(); 236 237 } 237 238 … … 804 805 { 805 806 videoRecBlockFree(pBlockCommon); 806 itBlockCommon = itCommon->second->List.erase(itBlockCommon); 807 itCommon->second->List.erase(itBlockCommon); 808 itBlockCommon = itCommon->second->List.begin(); 807 809 } 808 810 else … … 1053 1055 } 1054 1056 1055 it = pCtx->vecStreams.erase(it); 1057 pCtx->vecStreams.erase(it); 1058 it = pCtx->vecStreams.begin(); 1056 1059 1057 1060 videoRecStreamUnlock(pStream);
Note:
See TracChangeset
for help on using the changeset viewer.