[XCOPY] Sync with Wine Staging 1.7.37. CORE-9246

svn path=/trunk/; revision=67654
This commit is contained in:
Amine Khaldi 2015-05-11 12:47:54 +00:00
parent 059e72b8c3
commit 037f0d351f
2 changed files with 5 additions and 4 deletions

View file

@ -276,11 +276,9 @@ static BOOL XCOPY_ProcessExcludeFile(WCHAR* filename, WCHAR* endOfName) {
EXCLUDELIST *thisEntry;
int length = lstrlenW(buffer);
/* Strip CRLF */
buffer[length-1] = 0x00;
/* If more than CRLF */
if (length > 1) {
buffer[length-1] = 0; /* strip CRLF */
thisEntry = HeapAlloc(GetProcessHeap(), 0, sizeof(EXCLUDELIST));
thisEntry->next = excludeList;
excludeList = thisEntry;
@ -833,6 +831,9 @@ static int XCOPY_ParseCommandLine(WCHAR *suppliedsource,
case '?': XCOPY_wprintf(XCOPY_LoadMessage(STRING_HELP));
rc = RC_HELP;
goto out;
case 'V':
WINE_FIXME("ignoring /V\n");
break;
default:
WINE_TRACE("Unhandled parameter '%s'\n", wine_dbgstr_w(word));
XCOPY_wprintf(XCOPY_LoadMessage(STRING_INVPARM), word);

View file

@ -234,7 +234,7 @@ reactos/base/applications/cmdutils/reg # Synced to WineStaging-1.7.37
reactos/base/applications/cmdutils/taskkill # Synced to Wine-1.7.27
reactos/base/applications/cmdutils/wmic # Synced to Wine-1.7.27
reactos/base/applications/cmdutils/wscript # Synced to WineStaging-1.7.37
reactos/base/applications/cmdutils/xcopy # Synced to Wine-1.7.27
reactos/base/applications/cmdutils/xcopy # Synced to WineStaging-1.7.37
reactos/base/applications/games/winmine # Forked at Wine-1_3_5
reactos/base/applications/extrac32 # Synced to Wine-1.7.27
reactos/base/applications/iexplore # Synced to Wine-1.7.27