From a12df245a4f0634cc23f01840aa253f9e46cef7a Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Fri, 10 Aug 2007 01:39:26 +0000 Subject: [PATCH] 10l: removed pipe_close instead of pipe_read Originally committed as revision 10047 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/file.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libavformat/file.c b/libavformat/file.c index 1eaf01c2ce..c03db02dcc 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -104,10 +104,9 @@ static int pipe_open(URLContext *h, const char *filename, int flags) return 0; } -static int pipe_read(URLContext *h, unsigned char *buf, int size) +static int pipe_close(URLContext *h) { - int fd = (size_t)h->priv_data; - return read(fd, buf, size); + return 0; } URLProtocol pipe_protocol = {