inputPlugins/_ogg_common.c: check for read errors correctly

git-svn-id: https://svn.musicpd.org/mpd/trunk@4660 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Eric Wong 2006-08-20 10:13:50 +00:00
parent aa487e6c75
commit f8b07de3d4

View File

@ -40,7 +40,7 @@ ogg_stream_type ogg_stream_type_detect(InputStream * inStream)
while (to_read) {
r = readFromInputStream(inStream, buf, 1, to_read);
if (r < inStream->error)
if (inStream->error)
break;
to_read -= r;
if (!r && !inputStreamAtEOF(inStream))