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

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

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

* commit '8cd62808':
  Use delete[] to de-allocate pointers from new[]
parents 00599eca 8cd62808
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) {