VirtualBox

Changeset 85659 in vbox


Ignore:
Timestamp:
Aug 10, 2020 11:29:08 AM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
139786
Message:

DnD/DnDTransferList: Tweaked return value of VERR_FILE_NOT_FOUND to VERR_PATH_NOT_FOUND to make it more platform independent.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/GuestHost/DragAndDrop/DnDTransferList.cpp

    r85539 r85659  
    632632                }
    633633            }
     634            /* On UNIX-y OSes RTPathQueryInfo() returns VERR_FILE_NOT_FOUND in some cases
     635             * so tweak this to make it uniform to Windows. */
     636            else if (rc == VERR_FILE_NOT_FOUND)
     637                rc = VERR_PATH_NOT_FOUND;
    634638        }
    635639        else
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette