summaryrefslogtreecommitdiff
path: root/libavformat/mmsh.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-11-01 12:52:19 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-11-01 12:59:15 +0100
commit26b64550d61a24c6eb83c2bb4805155763dc94fa (patch)
tree9a51b1dd5a8688d2a5a99e09839d57a9e677398a /libavformat/mmsh.c
parent5ecb6f4332485e700f2816ea0cd28c151cd663c8 (diff)
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.c2
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)