mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Fixed a bug in CopyFileExW().
The write count is set to the previous returned read length. svn path=/trunk/; revision=2151
This commit is contained in:
parent
4073da2472
commit
b4a4e5c0be
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: copy.c,v 1.7 2000/06/03 14:47:31 ea Exp $
|
/* $Id: copy.c,v 1.8 2001/08/04 10:40:38 hbirr Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS system libraries
|
* PROJECT: ReactOS system libraries
|
||||||
|
@ -167,7 +167,7 @@ CopyFileExW (
|
||||||
lpData,
|
lpData,
|
||||||
(PIO_STATUS_BLOCK)&IoStatusBlock,
|
(PIO_STATUS_BLOCK)&IoStatusBlock,
|
||||||
lpBuffer,
|
lpBuffer,
|
||||||
RegionSize,
|
IoStatusBlock.Information,
|
||||||
NULL,
|
NULL,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue