Mercurial > mplayer.hg
changeset 9874:55a43ae66ceb
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...
author | rsf |
---|---|
date | Mon, 07 Apr 2003 20:44:06 +0000 |
parents | 480bfff4804c |
children | 6f36703cdd2a |
files | libmpdemux/stream.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/stream.c Mon Apr 07 20:41:24 2003 +0000 +++ b/libmpdemux/stream.c Mon Apr 07 20:44:06 2003 +0000 @@ -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: