-
-
Notifications
You must be signed in to change notification settings - Fork 87
Closed
Labels
Description
When an instance of Music created from a Stream is disposed, the application crashes without any exception raised.
In the example, Dispose method crashes the application and closes with exit code -1073740791 (0xc0000409)
static void Main(string[] args)
{
using var file = File.OpenRead("tune.ogg");
var music = new Music(file);
music.Play();
Console.Read();
music.Stop();
music.Dispose();
Console.WriteLine("end");
}