From ae77542a118120adb4b339ad6ec2ec433bf43533 Mon Sep 17 00:00:00 2001 From: Romain Rollet Date: Sat, 20 Jun 2015 15:37:19 +0200 Subject: OutputControl: fix fail_timer check right after booting Right after booting, the monotonic clock starts with a very small value, and AudioOutput::LockUpdate() may believe that the fail_timer has not recovered yet. --- src/output/OutputControl.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/output') diff --git a/src/output/OutputControl.cxx b/src/output/OutputControl.cxx index 89428fa87..9eafdb166 100644 --- a/src/output/OutputControl.cxx +++ b/src/output/OutputControl.cxx @@ -184,7 +184,8 @@ AudioOutput::LockUpdate(const AudioFormat audio_format, const ScopeLock protect(mutex); if (enabled && really_enabled) { - if (fail_timer.Check(REOPEN_AFTER * 1000)) { + if (!fail_timer.IsDefined() || + fail_timer.Check(REOPEN_AFTER * 1000)) { return Open(audio_format, mp); } } else if (IsOpen()) -- cgit v1.2.3