diff options
Diffstat (limited to '')
-rw-r--r-- | src/inputPlugins/_ogg_common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/inputPlugins/_ogg_common.c b/src/inputPlugins/_ogg_common.c index b0a9900a6..d24b2b47b 100644 --- a/src/inputPlugins/_ogg_common.c +++ b/src/inputPlugins/_ogg_common.c @@ -50,7 +50,8 @@ ogg_stream_type ogg_stream_type_detect(InputStream * inStream) break; } - seekInputStream(inStream, 0, SEEK_SET); + if (r > 0) + seekInputStream(inStream, 0, SEEK_SET); if (r >= 32 && memcmp(buf, "OggS", 4) == 0 && ( (memcmp(buf+29, "FLAC", 4) == 0 |