mirror of
https://github.com/crskycode/GARbro.git
synced 2025-01-11 12:39:16 +08:00
(TryOpen): check entry name validity.
This commit is contained in:
parent
1c33e4c9d5
commit
9fb51e57e3
@ -99,6 +99,8 @@ namespace GameRes.Formats
|
||||
for (int i = 0; i < total_count; ++i)
|
||||
{
|
||||
int name_size = file.View.ReadInt32 (cur_offset);
|
||||
if ((uint)name_size >= dir_size)
|
||||
return null;
|
||||
int type = file.View.ReadByte (cur_offset+4+name_size);
|
||||
if (1 != type) // ignore directory entries
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user