[Mplayer-cvslog] CVS: main/libmpdemux stream.c,1.60,1.61
Ross Finlayson CVS
rsf at mplayerhq.hu
Mon Apr 7 22:44:10 CEST 2003
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv4591a
Modified Files:
stream.c
Log Message:
Oops, I just noticed albeu's revision 1.58 - so I backed out the
"s->fd == NULL" test once again. I'll need to come up with some other
way of fixing this so that it works properly on Solaris...
Index: stream.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/stream.c,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- stream.c 7 Apr 2003 20:41:24 -0000 1.60
+++ stream.c 7 Apr 2003 20:44:06 -0000 1.61
@@ -169,7 +169,7 @@
int stream_fill_buffer(stream_t *s){
int len;
- if (s->fd == NULL || s->eof) { s->buf_pos = s->buf_len = 0; return 0; }
+ if (/*s->fd == NULL ||*/ s->eof) { s->buf_pos = s->buf_len = 0; return 0; }
switch(s->type){
#ifdef LIBSMBCLIENT
case STREAMTYPE_SMB:
More information about the MPlayer-cvslog
mailing list