Author: aandrejevic Date: Wed Mar 5 20:01:57 2014 New Revision: 62435
URL: http://svn.reactos.org/svn/reactos?rev=62435&view=rev Log: [BASESRV] BaseSrvCopyCommand should return TRUE if it was successful.
Modified: branches/ntvdm/subsystems/win/basesrv/vdm.c
Modified: branches/ntvdm/subsystems/win/basesrv/vdm.c URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/subsystems/win/basesrv/vdm... ============================================================================== --- branches/ntvdm/subsystems/win/basesrv/vdm.c [iso-8859-1] (original) +++ branches/ntvdm/subsystems/win/basesrv/vdm.c [iso-8859-1] Wed Mar 5 20:01:57 2014 @@ -339,6 +339,9 @@
/* 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 */