Changeset f37b2d5a in ffmpeg


Ignore:
Timestamp:
Dec 17, 2011, 4:04:56 AM (13 years ago)
Author:
Michael Niedermayer <michaelni@gmx.at>
Branches:
master
Children:
68230eb3
Parents:
4d70023a
git-author:
Michael Niedermayer <michaelni@gmx.at> (12/17/11 04:02:11)
git-committer:
Michael Niedermayer <michaelni@gmx.at> (12/17/11 04:04:56)
Message:

aacdec: Fix null pointer crash
Fixes bug170
Bug found by: Gautam Gupta

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libavcodec/mpeg4audio.c

    r4d70023a rf37b2d5a  
    8282    GetBitContext gb;
    8383    int specific_config_bitindex;
     84
     85    if(bit_size<=0)
     86        return AVERROR_INVALIDDATA;
    8487
    8588    init_get_bits(&gb, buf, bit_size);
Note: See TracChangeset for help on using the changeset viewer.