[pulseaudio-commits] [SCM] PulseAudio Sound Server branch, master, updated. v0.9.11-59-ge0dd72a
Lennart Poettering
gitmailer-noreply at 0pointer.de
Tue Aug 5 07:31:23 PDT 2008
This is an automated email from the git hooks/post-receive script. It was
generated because of a push to the "PulseAudio Sound Server" repository.
The master branch has been updated
from f57b9153a844f3026af1d90b0d56e038f49ff54e (commit)
- Log -----------------------------------------------------------------
e0dd72a... fix error path (spotted by Coling Guthrie)
-----------------------------------------------------------------------
Summary of changes:
src/utils/padsp.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
commit e0dd72afcb21d8addc594699888898c51ceb01ec
Author: Lennart Poettering <lennart at poettering.net>
Date: Tue Aug 5 16:31:17 2008 +0200
fix error path (spotted by Coling Guthrie)
diff --git a/src/utils/padsp.c b/src/utils/padsp.c
index d650707..c82fde6 100644
--- a/src/utils/padsp.c
+++ b/src/utils/padsp.c
@@ -2250,7 +2250,7 @@ static int dsp_ioctl(fd_info *i, unsigned long request, void*argp, int *_errno)
for (;;) {
pa_usec_t usec;
- PLAYBACK_STREAM_CHECK_DEAD_GOTO(i, exit_loop);
+ PLAYBACK_STREAM_CHECK_DEAD_GOTO(i, exit_loop2);
if (pa_stream_get_time(i->play_stream, &usec) >= 0) {
size_t k = pa_usec_to_bytes(usec, &i->sample_spec);
@@ -2272,6 +2272,8 @@ static int dsp_ioctl(fd_info *i, unsigned long request, void*argp, int *_errno)
pa_threaded_mainloop_wait(i->mainloop);
}
+ exit_loop2:
+
pa_threaded_mainloop_unlock(i->mainloop);
debug(DEBUG_LEVEL_NORMAL, __FILE__": GETOPTR bytes=%i, blocks=%i, ptr=%i\n", info->bytes, info->blocks, info->ptr);
--
hooks/post-receive
PulseAudio Sound Server
More information about the pulseaudio-commits
mailing list