[FFmpeg-cvslog] avcodec/dvbsubdec: Do not return a value from a function returning void
Michael Niedermayer
git at videolan.org
Sat May 16 00:16:08 CEST 2015
ffmpeg | branch: release/2.6 | Michael Niedermayer <michaelni at gmx.at> | Sun Apr 26 13:47:12 2015 +0200| [83ee63e7f8a573ed353bc799282527053fad8edf] | committer: Michael Niedermayer
avcodec/dvbsubdec: Do not return a value from a function returning void
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit e06dde52d75ac216c98c8479f7f8f0d4566024af)
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=83ee63e7f8a573ed353bc799282527053fad8edf
---
libavcodec/dvbsubdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c
index e2b37e4..46abb6a 100644
--- a/libavcodec/dvbsubdec.c
+++ b/libavcodec/dvbsubdec.c
@@ -1417,7 +1417,7 @@ static void save_display_set(DVBSubContext *ctx)
pbuf = av_malloc(width * height * 4);
if (!pbuf)
- return AVERROR(ENOMEM);
+ return;
for (display = ctx->display_list; display; display = display->next) {
region = get_region(ctx, display->region_id);
More information about the ffmpeg-cvslog
mailing list