]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/dvbsub_parser.c
Merge commit '56febc993b928ccc039a32158ca60b234c311875'
[ffmpeg] / libavcodec / dvbsub_parser.c
index d15c89150f8f3f8eaa547f1fa9cf52e5afc6fa2d..f9fdb6a8b9f6112f7e6f797f4a6ea1d97ff04142 100644 (file)
@@ -122,11 +122,11 @@ static int dvbsub_parse(AVCodecParserContext *s,
     {
         if (*p == 0x0f)
         {
-            if (p + 6 <= p_end)
+            if (6 <= p_end - p)
             {
                 len = AV_RB16(p + 4);
 
-                if (p + len + 6 <= p_end)
+                if (len + 6 <= p_end - p)
                 {
                     *poutbuf_size += len + 6;
 
@@ -136,7 +136,7 @@ static int dvbsub_parse(AVCodecParserContext *s,
             } else
                 break;
         } else if (*p == 0xff) {
-            if (p + 1 < p_end)
+            if (1 < p_end - p)
             {
                 av_dlog(avctx, "Junk at end of packet\n");
             }