]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/f_cue: always check the return value of ff_inlink_consume_frame
authorMarton Balint <cus@passwd.hu>
Sun, 7 Oct 2018 19:48:45 +0000 (21:48 +0200)
committerMarton Balint <cus@passwd.hu>
Tue, 9 Oct 2018 19:46:28 +0000 (21:46 +0200)
Fixes Coverity CID 1439936.

Signed-off-by: Marton Balint <cus@passwd.hu>
libavfilter/f_cue.c

index 9cf710c6d270ca886b23eeaf0ad4b4ed65200e2f..b48dfc9d4990613ad0798dc62440f8d864fb9480 100644 (file)
@@ -51,7 +51,9 @@ static int activate(AVFilterContext *ctx)
         }
         if (s->status == 1) {
             if (pts - s->first_pts < s->preroll) {
-                ff_inlink_consume_frame(inlink, &frame);
+                int ret = ff_inlink_consume_frame(inlink, &frame);
+                if (ret < 0)
+                    return ret;
                 return ff_filter_frame(outlink, frame);
             }
             s->first_pts = pts;
@@ -70,7 +72,9 @@ static int activate(AVFilterContext *ctx)
             s->status++;
         }
         if (s->status == 4) {
-            ff_inlink_consume_frame(inlink, &frame);
+            int ret = ff_inlink_consume_frame(inlink, &frame);
+            if (ret < 0)
+                return ret;
             return ff_filter_frame(outlink, frame);
         }
     }