-
Notifications
You must be signed in to change notification settings - Fork 217
Open
Description
Entering the following code into SharpLab, in Run mode on x64 Release, will cause the container to crash:
using System;
using System.IO;
using System.IO.Compression;
var output = new MemoryStream();
var compressor = new BrotliStream(output, CompressionLevel.SmallestSize);
compressor.Write([0,0,0,0]);
compressor.Flush();
foreach (var b in output.ToArray())
Console.WriteLine(b);
Metadata
Metadata
Assignees
Labels
No labels