diff options
author | Max Kellermann <max@duempel.org> | 2014-01-05 22:00:33 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-06 18:27:26 +0100 |
commit | 08f5b9f1f9292a6e9e4a6ede16bb61b38bbae89d (patch) | |
tree | 254e3c5078082c78249c2b1ad568d9eba33f5d89 /src/mixer | |
parent | 793962c5b86cd063036a2d28907b0b33012483e1 (diff) |
event/MultiSocketMonitor: add method ClearSocketList()
Diffstat (limited to 'src/mixer')
-rw-r--r-- | src/mixer/AlsaMixerPlugin.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mixer/AlsaMixerPlugin.cxx b/src/mixer/AlsaMixerPlugin.cxx index f0d9b8007..4f92e697d 100644 --- a/src/mixer/AlsaMixerPlugin.cxx +++ b/src/mixer/AlsaMixerPlugin.cxx @@ -91,8 +91,10 @@ static constexpr Domain alsa_mixer_domain("alsa_mixer"); int AlsaMixerMonitor::PrepareSockets() { - if (mixer == nullptr) + if (mixer == nullptr) { + ClearSocketList(); return -1; + } int count = snd_mixer_poll_descriptors_count(mixer); if (count < 0) |