mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[EXT2] Add __REACTOS__ check around changes done in 76910c358f
This commit is contained in:
parent
09c4d0a74b
commit
4c1cbd2b53
1 changed files with 6 additions and 0 deletions
|
@ -2072,9 +2072,15 @@ Ext2ParseRegistryVolumeParams(
|
|||
|
||||
USHORT i, j, k;
|
||||
|
||||
#ifdef __REACTOS__
|
||||
RtlZeroMemory(Codepage, sizeof(WCHAR) * CODEPAGE_MAXLEN);
|
||||
RtlZeroMemory(Prefix, sizeof(WCHAR) * HIDINGPAT_LEN);
|
||||
RtlZeroMemory(Suffix, sizeof(WCHAR) * HIDINGPAT_LEN);
|
||||
#else
|
||||
RtlZeroMemory(Codepage, CODEPAGE_MAXLEN);
|
||||
RtlZeroMemory(Prefix, HIDINGPAT_LEN);
|
||||
RtlZeroMemory(Suffix, HIDINGPAT_LEN);
|
||||
#endif
|
||||
RtlZeroMemory(MountPoint, sizeof(USHORT) * 4);
|
||||
RtlZeroMemory(DrvLetter, sizeof(CHAR) * 4);
|
||||
|
||||
|
|
Loading…
Reference in a new issue