- Timestamp:
- May 25, 2019 2:22:39 PM (6 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDSourceImpl.cpp
r78093 r78745 378 378 * so there is no need in the call of delete operator. */ 379 379 hr = pTask->createThreadWithType(RTTHREADTYPE_MAIN_WORKER); 380 380 pTask = NULL; /* Note: pTask is now owned by the worker thread. */ 381 381 } 382 382 catch (std::bad_alloc &) … … 397 397 ComAssertComRC(hr); 398 398 399 /* Note: pTask is now owned by the worker thread. */400 399 } 401 400 else -
trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
r78093 r78745 659 659 * so there is no need in the call of delete operator. */ 660 660 hr = pTask->createThreadWithType(RTTHREADTYPE_MAIN_WORKER); 661 661 pTask = NULL; /* Note: pTask is now owned by the worker thread. */ 662 662 } 663 663 catch (std::bad_alloc &) … … 677 677 hr = pResp->queryProgressTo(aProgress.asOutParam()); 678 678 ComAssertComRC(hr); 679 680 /* Note: pTask is now owned by the worker thread. */681 679 } 682 680 else
Note:
See TracChangeset
for help on using the changeset viewer.