mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
FileNameLength and ShortNameLength are in bytes, adjust offset for writing
terminating NUL character accordingly svn path=/trunk/; revision=4587
This commit is contained in:
parent
4b11a99bfe
commit
1e0a179dd4
1 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: find.c,v 1.35 2003/03/23 10:48:14 hbirr Exp $
|
||||
/* $Id: find.c,v 1.36 2003/04/26 08:56:50 gvg Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -470,11 +470,11 @@ FindFirstFileW (
|
|||
memcpy (lpFindFileData->cFileName,
|
||||
IData->pFileInfo->FileName,
|
||||
IData->pFileInfo->FileNameLength);
|
||||
lpFindFileData->cFileName[IData->pFileInfo->FileNameLength] = 0;
|
||||
lpFindFileData->cFileName[IData->pFileInfo->FileNameLength / sizeof(WCHAR)] = 0;
|
||||
memcpy (lpFindFileData->cAlternateFileName,
|
||||
IData->pFileInfo->ShortName,
|
||||
IData->pFileInfo->ShortNameLength);
|
||||
lpFindFileData->cAlternateFileName[IData->pFileInfo->ShortNameLength] = 0;
|
||||
lpFindFileData->cAlternateFileName[IData->pFileInfo->ShortNameLength / sizeof(WCHAR)] = 0;
|
||||
return IData;
|
||||
}
|
||||
|
||||
|
@ -511,11 +511,11 @@ FindNextFileW (
|
|||
memcpy (lpFindFileData->cFileName,
|
||||
IData->pFileInfo->FileName,
|
||||
IData->pFileInfo->FileNameLength);
|
||||
lpFindFileData->cFileName[IData->pFileInfo->FileNameLength] = 0;
|
||||
lpFindFileData->cFileName[IData->pFileInfo->FileNameLength / sizeof(WCHAR)] = 0;
|
||||
memcpy (lpFindFileData->cAlternateFileName,
|
||||
IData->pFileInfo->ShortName,
|
||||
IData->pFileInfo->ShortNameLength);
|
||||
lpFindFileData->cAlternateFileName[IData->pFileInfo->ShortNameLength] = 0;
|
||||
lpFindFileData->cAlternateFileName[IData->pFileInfo->ShortNameLength / sizeof(WCHAR)] = 0;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue