diff options
author | Evgenii Stepanov <eugenis@google.com> | 2015-05-12 22:28:36 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-05-12 22:28:37 +0000 |
commit | 9586592ed94478af8ab2feb921459aa63a402970 (patch) | |
tree | 6ff3830810f497544dfeffec4097bcd31959ecb0 /media | |
parent | 757f6446f5492320f6b72016aa501c9c861a5092 (diff) | |
parent | 883cc24817551459fe72994dcff4fc6f54f88538 (diff) | |
download | frameworks_av-9586592ed94478af8ab2feb921459aa63a402970.zip frameworks_av-9586592ed94478af8ab2feb921459aa63a402970.tar.gz frameworks_av-9586592ed94478af8ab2feb921459aa63a402970.tar.bz2 |
Merge "Fix new[] vs delete mismatch." into mnc-dev
Diffstat (limited to 'media')
-rw-r--r-- | media/libstagefright/codecs/aacdec/SoftAAC2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/codecs/aacdec/SoftAAC2.cpp b/media/libstagefright/codecs/aacdec/SoftAAC2.cpp index 10937ec..965c55e 100644 --- a/media/libstagefright/codecs/aacdec/SoftAAC2.cpp +++ b/media/libstagefright/codecs/aacdec/SoftAAC2.cpp @@ -75,7 +75,7 @@ SoftAAC2::SoftAAC2( SoftAAC2::~SoftAAC2() { aacDecoder_Close(mAACDecoder); - delete mOutputDelayRingBuffer; + delete[] mOutputDelayRingBuffer; } void SoftAAC2::initPorts() { |