mirror of
https://github.com/bobranten/Ext4Fsd.git
synced 2025-10-30 05:18:31 -05:00
corrected the initialization of three arrays
This commit is contained in:
@@ -2068,9 +2068,9 @@ Ext2ParseRegistryVolumeParams(
|
|||||||
|
|
||||||
USHORT i, j, k;
|
USHORT i, j, k;
|
||||||
|
|
||||||
RtlZeroMemory(Codepage, CODEPAGE_MAXLEN);
|
RtlZeroMemory(Codepage, sizeof(WCHAR) * CODEPAGE_MAXLEN);
|
||||||
RtlZeroMemory(Prefix, HIDINGPAT_LEN);
|
RtlZeroMemory(Prefix, sizeof(WCHAR) * HIDINGPAT_LEN);
|
||||||
RtlZeroMemory(Suffix, HIDINGPAT_LEN);
|
RtlZeroMemory(Suffix, sizeof(WCHAR) * HIDINGPAT_LEN);
|
||||||
RtlZeroMemory(MountPoint, sizeof(USHORT) * 4);
|
RtlZeroMemory(MountPoint, sizeof(USHORT) * 4);
|
||||||
RtlZeroMemory(DrvLetter, sizeof(CHAR) * 4);
|
RtlZeroMemory(DrvLetter, sizeof(CHAR) * 4);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user