Changeset 2271 in vbox for trunk/src/VBox/Frontends/VBoxSDL
- Timestamp:
- Apr 20, 2007 1:01:05 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20631
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r2238 r2271 996 996 } 997 997 /* resolve it. */ 998 hdaFile = RTPathRealDup(argv[curArg]); 998 if (RTPathExists(argv[curArg])) 999 hdaFile = RTPathRealDup(argv[curArg]); 999 1000 if (!hdaFile) 1000 1001 { … … 1013 1014 } 1014 1015 /* resolve it. */ 1015 fdaFile = RTPathRealDup(argv[curArg]); 1016 if (RTPathExists(argv[curArg])) 1017 fdaFile = RTPathRealDup(argv[curArg]); 1016 1018 if (!fdaFile) 1017 1019 { … … 1030 1032 } 1031 1033 /* resolve it. */ 1032 cdromFile = RTPathRealDup(argv[curArg]); 1034 if (RTPathExists(argv[curArg])) 1035 cdromFile = RTPathRealDup(argv[curArg]); 1033 1036 if (!cdromFile) 1034 1037 {
Note:
See TracChangeset
for help on using the changeset viewer.