Changeset 73511 in vbox for trunk/src/VBox
- Timestamp:
- Aug 5, 2018 2:20:03 PM (6 years ago)
- Location:
- trunk/src/VBox/HostServices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/DragAndDrop/service.cpp
r72827 r73511 1091 1091 m_clientQueue.push_back(u32ClientID); 1092 1092 } 1093 catch (std::bad_alloc )1093 catch (std::bad_alloc &) 1094 1094 { 1095 1095 rc = VERR_NO_MEMORY; -
trunk/src/VBox/HostServices/GuestControl/service.cpp
r72827 r73511 544 544 pHostCmd->AddRef(); 545 545 } 546 catch (std::bad_alloc )546 catch (std::bad_alloc &) 547 547 { 548 548 rc = VERR_NO_MEMORY; … … 1366 1366 /* rc = */ RTListAppend(&mHostCmdList, &pHostCmd->Node); 1367 1367 } 1368 catch (std::bad_alloc )1368 catch (std::bad_alloc &) 1369 1369 { 1370 1370 rc = VERR_NO_MEMORY; … … 1514 1514 } 1515 1515 } 1516 catch (std::bad_alloc )1516 catch (std::bad_alloc &) 1517 1517 { 1518 1518 rc = VERR_NO_MEMORY; … … 1558 1558 } 1559 1559 } 1560 catch (std::bad_alloc )1560 catch (std::bad_alloc &) 1561 1561 { 1562 1562 rc = VERR_NO_MEMORY; -
trunk/src/VBox/HostServices/GuestProperties/service.cpp
r73100 r73511 781 781 } 782 782 } 783 catch (std::bad_alloc )783 catch (std::bad_alloc &) 784 784 { 785 785 rc = VERR_NO_MEMORY; … … 1235 1235 mGuestNotifications.pop_front(); 1236 1236 } 1237 catch (std::bad_alloc )1237 catch (std::bad_alloc &) 1238 1238 { 1239 1239 rc = VERR_NO_MEMORY; … … 1418 1418 } 1419 1419 } 1420 catch (std::bad_alloc )1420 catch (std::bad_alloc &) 1421 1421 { 1422 1422 rc = VERR_NO_MEMORY; … … 1554 1554 } 1555 1555 } 1556 catch (std::bad_alloc )1556 catch (std::bad_alloc &) 1557 1557 { 1558 1558 rc = VERR_NO_MEMORY;
Note:
See TracChangeset
for help on using the changeset viewer.