# HG changeset patch # User rsf # Date 1049748246 0 # Node ID 55a43ae66cebab9dfe07dc093cb46f27a83212dc # Parent 480bfff4804cc8eea6278756762384ff064decfd 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... diff -r 480bfff4804c -r 55a43ae66ceb libmpdemux/stream.c --- 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: