Merge branch 'v0.19.x'

This commit is contained in:
Max Kellermann
2016-11-17 22:19:46 +01:00
6 changed files with 47 additions and 15 deletions

View File

@@ -223,6 +223,10 @@ AlsaInputStream::Recover(int err)
case -EPIPE:
LogDebug(alsa_input_domain, "Buffer Overrun");
// drop through
#if GCC_CHECK_VERSION(7,0)
[[fallthrough]];
#endif
case -ESTRPIPE:
case -EINTR:
err = snd_pcm_recover(capture_handle, err, 1);