mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
Bug 1227052 - Use delete[] for sinf->IPMPData. r=jya
--HG-- extra : rebase_source : d8197fdc08c009dedd25f83ef2a7fc68356043a7
This commit is contained in:
parent
a29a644203
commit
ed2eee2066
@ -402,7 +402,7 @@ MPEG4Extractor::~MPEG4Extractor() {
|
||||
SINF *sinf = mFirstSINF;
|
||||
while (sinf) {
|
||||
SINF *next = sinf->next;
|
||||
delete sinf->IPMPData;
|
||||
delete[] sinf->IPMPData;
|
||||
delete sinf;
|
||||
sinf = next;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user