diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-01 12:52:19 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-01 12:59:15 +0100 |
commit | 26b64550d61a24c6eb83c2bb4805155763dc94fa (patch) | |
tree | 9a51b1dd5a8688d2a5a99e09839d57a9e677398a /libavformat/mmsh.c | |
parent | 5ecb6f4332485e700f2816ea0cd28c151cd663c8 (diff) | |
download | ffmpeg-26b64550d61a24c6eb83c2bb4805155763dc94fa.tar.gz |
mmsh: add return value for mmsh_open()
Found-by: cptspiff
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mmsh.c')
-rw-r--r-- | libavformat/mmsh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mmsh.c b/libavformat/mmsh.c index ab7e9d9f7c..f54a976e19 100644 --- a/libavformat/mmsh.c +++ b/libavformat/mmsh.c @@ -317,7 +317,7 @@ fail: static int mmsh_open(URLContext *h, const char *uri, int flags) { - mmsh_open_internal(h, uri, flags, 0, 0); + return mmsh_open_internal(h, uri, flags, 0, 0); } static int handle_chunk_type(MMSHContext *mmsh) |