Commit a889684a authored by Eric Wong's avatar Eric Wong

http: hopefully allow seeking to work on static files

git-svn-id: https://svn.musicpd.org/mpd/trunk@7398 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent c7d1ce07
......@@ -686,7 +686,6 @@ static int recv_response(InputStream * is)
parse_headers(is, response, needle);
if (is->size <= 0)
is->seekable = 0;
is->seekable = 0;
needle += sizeof("\r\n\r\n") - 1;
peeked = needle - response;
assert(peeked <= r);
......@@ -810,6 +809,8 @@ int inputStream_httpSeek(InputStream * is, long offset, int whence)
}
diff = is->offset - old_offset;
if (!diff)
return 0; /* nothing to seek */
if (diff > 0) { /* seek forward if we've already buffered it */
long avail = (long)ringbuf_read_space(data->rb);
if (avail >= diff) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment