Skip to content

Commit

Permalink
Fix Infinite Recursion (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlgorithmsAreCool authored and peterfreiling committed Dec 11, 2019
1 parent 6cacadc commit f409a32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ private void DisposeStateLocal()
protected override void DisposeState()
{
this.batch.Free();
if (hasDisposableState) DisposeState();
if (hasDisposableState) DisposeStateLocal();
}
}
}

0 comments on commit f409a32

Please sign in to comment.