]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/mpegts.c
mpegts_read_header: goto fail instead of return directly
[ffmpeg] / libavformat / mpegts.c
index 85b5146255f5d9aefba2d3f00bda5761b83f9880..288a84e13b9d505d5e31c506df658a5ee61c9c91 100644 (file)
@@ -2050,7 +2050,7 @@ static int mpegts_read_header(AVFormatContext *s)
         for(;;) {
             ret = read_packet(s, packet, ts->raw_packet_size);
             if (ret < 0)
-                return -1;
+                goto fail;
             pid = AV_RB16(packet + 1) & 0x1fff;
             if ((pcr_pid == -1 || pcr_pid == pid) &&
                 parse_pcr(&pcr_h, &pcr_l, packet) == 0) {