os: reset Audio_out stream prior to calling start

Issue #1767.
This commit is contained in:
Josef Söntgen 2015-11-04 14:15:17 +01:00 committed by Christian Helmuth
parent de8794321b
commit d8b95c263b
1 changed files with 2 additions and 2 deletions

View File

@ -91,10 +91,10 @@ class Audio_out::Session_client : public Genode::Rpc_client<Session>
void start()
{
call<Rpc_start>();
/* reset tail pointer */
stream()->reset();
call<Rpc_start>();
}
void stop() { call<Rpc_stop>(); }