mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:57:45 +00:00
SoundPlayer: Uninitialized variable in SoundPlayerWidget, found by Coverity
This commit is contained in:
parent
0ca00639a9
commit
3ee0917dcb
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ private:
|
||||||
GUI::Window& m_window;
|
GUI::Window& m_window;
|
||||||
NonnullRefPtr<Audio::ClientConnection> m_connection;
|
NonnullRefPtr<Audio::ClientConnection> m_connection;
|
||||||
PlaybackManager m_manager;
|
PlaybackManager m_manager;
|
||||||
float m_sample_ratio;
|
float m_sample_ratio { 1.0 };
|
||||||
RefPtr<GUI::Label> m_status;
|
RefPtr<GUI::Label> m_status;
|
||||||
RefPtr<GUI::Label> m_elapsed;
|
RefPtr<GUI::Label> m_elapsed;
|
||||||
RefPtr<GUI::Label> m_remaining;
|
RefPtr<GUI::Label> m_remaining;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue