Fix missing member initialization

This commit is contained in:
EnderIce2 2024-05-19 08:55:52 +03:00
parent 6801475243
commit 042a5f8d4a
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -309,11 +309,12 @@ struct Inode
Inode()
{
Index = 0;
Mode = 0;
Device = 0;
RawDevice = 0;
Index = 0;
Mode = 0;
Flags = 0;
Offset = 0;
PrivateData = nullptr;
}