From be7150d497484254de79a4097273c0bdce36d526 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 5 Aug 2016 18:59:21 +0200 Subject: [PATCH] avformat/teeproto: set forgotten url_close() Signed-off-by: Michael Niedermayer --- libavformat/teeproto.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/teeproto.c b/libavformat/teeproto.c index e22fba2d40..e532bc7750 100644 --- a/libavformat/teeproto.c +++ b/libavformat/teeproto.c @@ -140,6 +140,7 @@ const URLProtocol ff_tee_protocol = { .name = "tee", .url_open = tee_open, .url_write = tee_write, + .url_close = tee_close, .priv_data_size = sizeof(TeeContext), .priv_data_class = &tee_class, .default_whitelist = "crypto,file,http,https,httpproxy,rtmp,tcp,tls"