Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f6b2a7ff authored by Pirama Arumuga Nainar's avatar Pirama Arumuga Nainar Committed by Android Git Automerger
Browse files

am 85074538: am 8cd62808: Merge "Use delete[] to de-allocate pointers from new[]"

* commit '85074538':
  Use delete[] to de-allocate pointers from new[]
parents 01c48dce 85074538
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -974,8 +974,8 @@ void RunReadTest(Backtrace* backtrace, uintptr_t read_addr) {
          << "Offset at " << i << " length " << j << " wrote too much data";
    }
  }
  delete data;
  delete expected;
  delete[] data;
  delete[] expected;
}

TEST(libbacktrace, thread_read) {