Fixed off by one packet size allocation in the smacker demuxer.
authorLaurent Aimar <fenrir@videolan.org>
Mon, 12 Sep 2011 18:50:34 +0000 (20:50 +0200)
committerMartin Storsjö <martin@martin.st>
Mon, 12 Sep 2011 20:44:51 +0000 (23:44 +0300)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/smacker.c

index cff1af6..995ef41 100644 (file)
@@ -306,7 +306,7 @@ static int smacker_read_packet(AVFormatContext *s, AVPacket *pkt)
         }
         if (frame_size < 0)
             return AVERROR_INVALIDDATA;
-        if (av_new_packet(pkt, frame_size + 768))
+        if (av_new_packet(pkt, frame_size + 769))
             return AVERROR(ENOMEM);
         if(smk->frm_size[smk->cur_frame] & 1)
             palchange |= 2;