1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:58:12 +00:00

SoundPlayer: Uninitialized variable in SoundPlayerWidget, found by Coverity

This commit is contained in:
Brian Gianforcaro 2020-08-16 15:30:53 -07:00 committed by Andreas Kling
parent 0ca00639a9
commit 3ee0917dcb

View file

@ -79,7 +79,7 @@ private:
GUI::Window& m_window;
NonnullRefPtr<Audio::ClientConnection> m_connection;
PlaybackManager m_manager;
float m_sample_ratio;
float m_sample_ratio { 1.0 };
RefPtr<GUI::Label> m_status;
RefPtr<GUI::Label> m_elapsed;
RefPtr<GUI::Label> m_remaining;