[MPlayer-cvslog] r32590 - trunk/stream/stream_dvd.c
reimar
subversion at mplayerhq.hu
Sat Nov 6 20:34:57 CET 2010
Author: reimar
Date: Sat Nov 6 20:34:57 2010
New Revision: 32590
Log:
100l, add missing return.
Modified:
trunk/stream/stream_dvd.c
Modified: trunk/stream/stream_dvd.c
==============================================================================
--- trunk/stream/stream_dvd.c Sat Nov 6 20:33:30 2010 (r32589)
+++ trunk/stream/stream_dvd.c Sat Nov 6 20:34:57 2010 (r32590)
@@ -417,6 +417,7 @@ static int fill_buffer(stream_t *s, char
{
off_t pos=dvd_read_sector(s->priv,s->buffer);
if (pos < 0)
+ return -1;
s->pos = 2048*(pos - 1);
return 2048; // full sector
}
More information about the MPlayer-cvslog
mailing list