Commit 6c6b8ae7 authored by alex's avatar alex

Remove empty pipe_close

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11045 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 49e6f342
...@@ -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