]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/subviewer1dec.c
avformat: Remove getters and setters
[ffmpeg] / libavformat / subviewer1dec.c
index 1360d9b7d9ee278086b07da715339f9aaa353f57..f2eee294a1cb7cad85d8e52bdfe699268c7d98eb 100644 (file)
@@ -77,8 +77,10 @@ static int subviewer1_read_header(AVFormatContext *s)
                     sub->duration = pts_start - sub->pts;
             } else {
                 sub = ff_subtitles_queue_insert(&subviewer1->q, line, len, 0);
-                if (!sub)
+                if (!sub) {
+                    ff_subtitles_queue_clean(&subviewer1->q);
                     return AVERROR(ENOMEM);
+                }
                 sub->pos = pos;
                 sub->pts = pts_start;
                 sub->duration = -1;