]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Off by one fix to prevent possible segfault. Patch by jwestfall at surrealistic dot...
authorbanan <banan@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sat, 14 Jan 2006 17:43:22 +0000 (17:43 +0000)
committerbanan <banan@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sat, 14 Jan 2006 17:43:22 +0000 (17:43 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4857 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/mpeg12.c

index 514ff29318c138a9a520e1f5796398be0fcfed1f..c582ad7a0dc731f37fa232bc4c077c3032bf6585 100644 (file)
@@ -2178,7 +2178,7 @@ static int find_start_code(const uint8_t **pbuf_ptr, const uint8_t *buf_end)
     const uint8_t *buf_ptr= *pbuf_ptr;
 
     buf_ptr++; //gurantees that -1 is within the array
-    buf_end -= 2; // gurantees that +2 is within the array
+    buf_end -= 3; // gurantees that +3 is within the array
 
     while (buf_ptr < buf_end) {
         if(*buf_ptr==0){
@@ -2192,7 +2192,7 @@ static int find_start_code(const uint8_t **pbuf_ptr, const uint8_t *buf_end)
         }
         buf_ptr += 2;
     }
-    buf_end += 2; //undo the hack above
+    buf_end += 3; //undo the hack above
 
     *pbuf_ptr = buf_end;
     return -1;