summaryrefslogtreecommitdiff
path: root/libavformat/rdt.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-11-06 23:51:19 +0200
committerMartin Storsjö <martin@martin.st>2011-11-07 11:23:57 +0200
commited307e2659f2db81a434afece905383fdceb9b6e (patch)
tree20cb8f1d13c1c7dbca575307a59595bcc16be06f /libavformat/rdt.c
parent4b3dc857e416f9ec187cb14fd133226456ba7f91 (diff)
rdt: Check the return value of avformat_open
If it failed, return NULL. This avoids trying to use an half-initialized RDTDemuxContext. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rdt.c')
-rw-r--r--libavformat/rdt.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libavformat/rdt.c b/libavformat/rdt.c
index 3f161f618c..f492805d13 100644
--- a/libavformat/rdt.c
+++ b/libavformat/rdt.c
@@ -524,7 +524,11 @@ rdt_new_context (void)
{
PayloadContext *rdt = av_mallocz(sizeof(PayloadContext));
- avformat_open_input(&rdt->rmctx, "", &ff_rdt_demuxer, NULL);
+ int ret = avformat_open_input(&rdt->rmctx, "", &ff_rdt_demuxer, NULL);
+ if (ret < 0) {
+ av_free(rdt);
+ return NULL;
+ }
return rdt;
}