diff options
-rw-r--r-- | stream/http.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/http.c b/stream/http.c index d81491c6b9..117c531e4c 100644 --- a/stream/http.c +++ b/stream/http.c @@ -767,9 +767,9 @@ static int http_streaming_start(stream_t *stream, int* file_format) { // Check if we can make partial content requests and thus seek in http-streams if( http_hdr!=NULL && http_hdr->status_code==200 ) { - char *accept_ranges; + const char *accept_ranges = http_get_field(http_hdr,"Accept-Ranges"); const char *server = http_get_field(http_hdr, "Server"); - if( (accept_ranges = http_get_field(http_hdr,"Accept-Ranges")) != NULL ) + if (accept_ranges) seekable = strncmp(accept_ranges,"bytes",5)==0; else if (server && strcmp(server, "gvs 1.0") == 0) seekable = 1; // HACK for youtube incorrectly claiming not to support seeking |