aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/alsa_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2011-07-20 06:54:51 +0200
committerMax Kellermann <max@duempel.org>2011-07-20 06:54:51 +0200
commitd1eeed6a5ba0ac35f9dcad6355fc2d18c1860a9f (patch)
tree096eab7aff9312fe00837459d29e67e219e3353b /src/output/alsa_plugin.c
parent736fd0e29326548152e91e4e3fb8c0ea9c1b50ac (diff)
downloadmpd-d1eeed6a5ba0ac35f9dcad6355fc2d18c1860a9f.tar.gz
mpd-d1eeed6a5ba0ac35f9dcad6355fc2d18c1860a9f.tar.xz
mpd-d1eeed6a5ba0ac35f9dcad6355fc2d18c1860a9f.zip
output/alsa: fix SIGFPE when alsa announces a period size of 0
Diffstat (limited to 'src/output/alsa_plugin.c')
-rw-r--r--src/output/alsa_plugin.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/output/alsa_plugin.c b/src/output/alsa_plugin.c
index 9177fabe4..422264f53 100644
--- a/src/output/alsa_plugin.c
+++ b/src/output/alsa_plugin.c
@@ -508,6 +508,14 @@ configure_hw:
g_debug("buffer_size=%u period_size=%u",
(unsigned)alsa_buffer_size, (unsigned)alsa_period_size);
+ if (alsa_period_size == 0)
+ /* this works around a SIGFPE bug that occurred when
+ an ALSA driver indicated period_size==0; this
+ caused a division by zero in alsa_play(). By using
+ the fallback "1", we make sure that this won't
+ happen again. */
+ alsa_period_size = 1;
+
ad->period_frames = alsa_period_size;
ad->period_position = 0;