Changeset 85451 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jul 24, 2020 8:45:54 AM (5 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDSourceImpl.cpp
r85436 r85451 375 375 } 376 376 377 /* Drop write lock before creating thread. */ 378 alock.release(); 379 377 380 /* This function delete pTask in case of exceptions, 378 381 * so there is no need in the call of delete operator. */ … … 392 395 if (SUCCEEDED(hr)) 393 396 { 397 /* Re-acquire write lock. */ 398 alock.acquire(); 399 394 400 m_DataBase.cTransfersPending++; 395 401 -
trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
r85423 r85451 661 661 } 662 662 663 /* Drop write lock before creating thread. */ 664 alock.release(); 665 663 666 /* This function delete pTask in case of exceptions, 664 667 * so there is no need in the call of delete operator. */ … … 678 681 if (SUCCEEDED(hr)) 679 682 { 683 /* Re-acquire write lock. */ 684 alock.acquire(); 685 680 686 m_DataBase.cTransfersPending++; 681 687
Note:
See TracChangeset
for help on using the changeset viewer.