You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/dvbsubdec: Do not return a value from a function returning void
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -1418,7 +1418,7 @@ static void save_display_set(DVBSubContext *ctx)
|
|||||||
|
|
||||||
pbuf = av_malloc(width * height * 4);
|
pbuf = av_malloc(width * height * 4);
|
||||||
if (!pbuf)
|
if (!pbuf)
|
||||||
return AVERROR(ENOMEM);
|
return;
|
||||||
|
|
||||||
for (display = ctx->display_list; display; display = display->next) {
|
for (display = ctx->display_list; display; display = display->next) {
|
||||||
region = get_region(ctx, display->region_id);
|
region = get_region(ctx, display->region_id);
|
||||||
|
Reference in New Issue
Block a user