Fix incorrect assert in BucketTree.NodeBuffer.Allocate

This commit is contained in:
Alex Barney 2021-06-22 19:28:09 -07:00
parent b3dc972881
commit 496858c7a7

View file

@ -276,7 +276,7 @@ namespace LibHac.FsSystem
public bool Allocate(int nodeSize) public bool Allocate(int nodeSize)
{ {
Assert.SdkRequiresNotNull(_header); Assert.SdkRequiresNull(_header);
_header = new long[nodeSize / sizeof(long)]; _header = new long[nodeSize / sizeof(long)];