Audio_out::Stream: initialize members

Issue #4373
This commit is contained in:
Christian Prochaska 2022-01-13 07:36:30 +01:00 committed by Christian Helmuth
parent b7cf316f24
commit 8fd2847a48

View File

@ -156,8 +156,8 @@ class Audio_out::Stream
{
private:
unsigned _pos; /* current playback position */
unsigned _tail; /* tail pointer used for allocations */
unsigned _pos { 0 }; /* current playback position */
unsigned _tail { 0 }; /* tail pointer used for allocations */
Packet _buf[QUEUE_SIZE]; /* packet queue */
public: