From 6ba7e44e3c21da8419a38917db5ffcdde92b1b58 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Wed, 17 Jan 2024 23:39:39 +0100 Subject: [PATCH] Added mising dispose in E131UpdateQueue --- RGB.NET.Devices.DMX/E131/E131UpdateQueue.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/RGB.NET.Devices.DMX/E131/E131UpdateQueue.cs b/RGB.NET.Devices.DMX/E131/E131UpdateQueue.cs index 600a1ea..2e513ec 100644 --- a/RGB.NET.Devices.DMX/E131/E131UpdateQueue.cs +++ b/RGB.NET.Devices.DMX/E131/E131UpdateQueue.cs @@ -99,5 +99,12 @@ public sealed class E131UpdateQueue : UpdateQueue return _sequenceNumber++; } + public override void Dispose() + { + base.Dispose(); + + _socket.Dispose(); + } + #endregion } \ No newline at end of file