Browse Source

avformat/bit: check that pkt->size is 10 in write_packet

Ohter packet sizes are not supported by this muxer.

This avoids a null pointer dereference of pkt->data.

Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Andreas Cadhalpun Michael Niedermayer 10 years ago
parent
commit
eeda2c3de8
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavformat/bit.c

+ 3
- 0
libavformat/bit.c View File

@@ -133,6 +133,9 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
GetBitContext gb; GetBitContext gb;
int i; int i;


if (pkt->size != 10)
return AVERROR(EINVAL);

avio_wl16(pb, SYNC_WORD); avio_wl16(pb, SYNC_WORD);
avio_wl16(pb, 8 * 10); avio_wl16(pb, 8 * 10);




Loading…
Cancel
Save