diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-20 00:40:19 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-20 00:40:19 +0000 |
commit | 5a4022d878f8cd3a07e427344908b8226587a7f9 (patch) | |
tree | 8fa1d680fcdae798a761a0a78f24b6e2946a9728 /src/outputBuffer.c | |
parent | b3f46fd0cc27a96a7247936b6de8c1b37c24aaee (diff) | |
download | mpd-5a4022d878f8cd3a07e427344908b8226587a7f9.tar.gz mpd-5a4022d878f8cd3a07e427344908b8226587a7f9.tar.xz mpd-5a4022d878f8cd3a07e427344908b8226587a7f9.zip |
another bug fix for non-blocking seek
git-svn-id: https://svn.musicpd.org/mpd/trunk@1103 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/outputBuffer.c')
-rw-r--r-- | src/outputBuffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/outputBuffer.c b/src/outputBuffer.c index ddf6395a6..2323ea97b 100644 --- a/src/outputBuffer.c +++ b/src/outputBuffer.c @@ -28,8 +28,8 @@ static mpd_sint16 currentChunk = -1; void clearOutputBuffer(OutputBuffer * cb) { currentChunk = -1; - cb->end = cb->begin; - cb->wrap = 0; + /*cb->end = cb->begin; + cb->wrap = 0;*/ } void flushOutputBuffer(OutputBuffer * cb) { |