[BASESRV]

BaseSrvCopyCommand should return TRUE if it was successful.


svn path=/branches/ntvdm/; revision=62435
This commit is contained in:
Aleksandar Andrejevic 2014-03-05 20:01:57 +00:00
parent 7a52bcd33a
commit bdd88c2413

View file

@ -340,6 +340,9 @@ BOOLEAN NTAPI BaseSrvCopyCommand(PBASE_CHECK_VDM CheckVdmRequest, PVDM_DOS_RECOR
/* Set the DOS record's command structure */
DosRecord->CommandInfo = CommandInfo;
/* The operation was successful */
Success = TRUE;
Cleanup:
/* If it wasn't successful, free the memory */
if (!Success) BaseSrvFreeVDMInfo(CommandInfo);