Commit 74a43bdf authored by John Koleszar's avatar John Koleszar Committed by Gerrit Code Review
Browse files

Merge "superframe_test: use delete[] where appropriate" into experimental

Showing with 2 additions and 2 deletions
......@@ -30,7 +30,7 @@ class SuperframeTest : public ::libvpx_test::EncoderTest,
}
virtual void TearDown() {
delete modified_buf_;
delete[] modified_buf_;
}
virtual bool Continue() const {
......@@ -59,7 +59,7 @@ class SuperframeTest : public ::libvpx_test::EncoderTest,
buffer[pkt->data.frame.sz - index_sz] == marker) {
// frame is a superframe. strip off the index.
if (modified_buf_)
delete modified_buf_;
delete[] modified_buf_;
modified_buf_ = new uint8_t[pkt->data.frame.sz - index_sz];
memcpy(modified_buf_, pkt->data.frame.buf,
pkt->data.frame.sz - index_sz);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment