fix playback of small sound files

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@955 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2006-05-24 00:42:30 +00:00
parent 46fee46418
commit 440b901a4d

View file

@ -977,7 +977,7 @@ static int dsp_empty_socket(fd_info *i) {
for (;;) {
int l;
if (i->thread_fd < 0 || !i->stream)
if (i->thread_fd < 0)
break;
if (ioctl(i->thread_fd, SIOCINQ, &l) < 0) {
@ -985,8 +985,10 @@ static int dsp_empty_socket(fd_info *i) {
break;
}
if (!l)
if (!l) {
ret = 0;
break;
}
pa_threaded_mainloop_wait(i->mainloop);
}