Changeset 79036 in vbox for trunk/src/VBox/GuestHost/SharedClipboard/ClipboardArea.cpp
- Timestamp:
- Jun 7, 2019 2:56:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/ClipboardArea.cpp
r78950 r79036 153 153 rc = VINF_SUCCESS; 154 154 155 if (RT_SUCCESS(rc)) 155 if ( RT_SUCCESS(rc) 156 && m_strPathAbs.isNotEmpty()) 156 157 rc = RTDirRemoveRecursive(m_strPathAbs.c_str(), RTDIRRMREC_F_CONTENT_AND_DIR); 157 158 … … 357 358 358 359 rc2 = closeInternal(); 359 if (RT_SUCCESS(rc2)) 360 if ( RT_SUCCESS(rc2) 361 && m_strPathAbs.isNotEmpty()) 360 362 { 361 363 /* Try to remove the empty root dropped files directory as well.
Note:
See TracChangeset
for help on using the changeset viewer.