Skip to content

Commit

Permalink
fix memory access violation?
Browse files Browse the repository at this point in the history
  • Loading branch information
mukunku committed Mar 3, 2024
1 parent 5337081 commit 6ea28fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Parquet/File/PackedColumn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Parquet.File {
/// </summary>
class PackedColumn : IDisposable {

private static readonly ArrayPool<int> IntPool = ArrayPool<int>.Shared;
private readonly ArrayPool<int> IntPool = ArrayPool<int>.Shared;

// fields declared in write order

Expand Down

0 comments on commit 6ea28fd

Please sign in to comment.