Commit b5298028 authored by Alex Beregszaszi's avatar Alex Beregszaszi

Remove empty pipe_close

Originally committed as revision 11045 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7a813b36
...@@ -110,16 +110,9 @@ static int pipe_open(URLContext *h, const char *filename, int flags) ...@@ -110,16 +110,9 @@ static int pipe_open(URLContext *h, const char *filename, int flags)
return 0; return 0;
} }
static int pipe_close(URLContext *h)
{
return 0;
}
URLProtocol pipe_protocol = { URLProtocol pipe_protocol = {
"pipe", "pipe",
pipe_open, pipe_open,
file_read, file_read,
file_write, file_write,
NULL,
pipe_close,
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment