aboutsummaryrefslogtreecommitdiff
path: root/audio/esound/files
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2007-02-27 07:17:52 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2007-02-27 07:17:52 +0000
commita3afe3e0f63015432ce9e9d9a8c93c89d26b7287 (patch)
tree1c450b52fe585036b967684d503c0f344ab6ce10 /audio/esound/files
parent0ad38e801e60c285e73207e6671c6f339de6e4d5 (diff)
downloadports-a3afe3e0f63015432ce9e9d9a8c93c89d26b7287.tar.gz
ports-a3afe3e0f63015432ce9e9d9a8c93c89d26b7287.zip
Notes
Diffstat (limited to 'audio/esound/files')
-rw-r--r--audio/esound/files/patch-players.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/audio/esound/files/patch-players.c b/audio/esound/files/patch-players.c
new file mode 100644
index 000000000000..6a140b32b1b7
--- /dev/null
+++ b/audio/esound/files/patch-players.c
@@ -0,0 +1,20 @@
+--- players.c.orig Tue Feb 27 02:16:05 2007
++++ players.c Tue Feb 27 02:16:37 2007
+@@ -310,13 +310,14 @@ int read_player( esd_player_t *player )
+ player->data_buffer + player->actual_length,
+ player->buffer_length - player->actual_length,
+ actual, "str rd" );
+- if (bytes_read < player->buffer_length - player->actual_length)
+- break;
+-
+ /* check for end of stream */
+ if ( actual == 0
+ || ( actual < 0 && errno != EAGAIN && errno != EINTR ) )
+ return -1;
++
++ if (bytes_read < player->buffer_length - player->actual_length)
++ break;
++
+ /* more data, save how much we got */
+ if ( actual > 0 )
+ player->actual_length += actual;