Browse Source

Dispose currentLocalColorTable in final block

pull/2744/head
Brian Popow 2 years ago
parent
commit
35ea961552
  1. 1
      src/ImageSharp/Formats/Gif/GifDecoderCore.cs

1
src/ImageSharp/Formats/Gif/GifDecoderCore.cs

@ -463,6 +463,7 @@ internal sealed class GifDecoderCore : IImageDecoderInternals
finally
{
indices?.Dispose();
this.currentLocalColorTable?.Dispose();
}
}

Loading…
Cancel
Save