Skip to content

Commit

Permalink
Added mising dispose in E131UpdateQueue
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthAffe committed Jan 17, 2024
1 parent 9004c50 commit 6ba7e44
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions RGB.NET.Devices.DMX/E131/E131UpdateQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,12 @@ private byte GetNextSequenceNumber()
return _sequenceNumber++;
}

public override void Dispose()
{
base.Dispose();

_socket.Dispose();
}

#endregion
}

0 comments on commit 6ba7e44

Please sign in to comment.