file_sys/directory: Amend path buffer size for directory entries
The path buffer is actually 0x301 (769) characters in length, with the extra character being intended for the null-terminator.
This commit is contained in:
parent
7ce17b2cf6
commit
7e2467e695
|
@ -29,8 +29,8 @@ struct Entry {
|
||||||
filename[copy_size] = '\0';
|
filename[copy_size] = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
char filename[0x300];
|
char filename[0x301];
|
||||||
INSERT_PADDING_BYTES(4);
|
INSERT_PADDING_BYTES(3);
|
||||||
EntryType type;
|
EntryType type;
|
||||||
INSERT_PADDING_BYTES(3);
|
INSERT_PADDING_BYTES(3);
|
||||||
u64 file_size;
|
u64 file_size;
|
||||||
|
|
Reference in New Issue