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

Commit a712e216 authored by George Burgess IV's avatar George Burgess IV Committed by android-build-merger
Browse files

Merge "Add a NOLINT for the memory leak we added" am: 10f62351 am: 4e3ae2cb

am: ad4025b3

Change-Id: I1d4831bc70b8874e66583f4a130b3a711c24b019
parents 29717e60 ad4025b3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -77,6 +77,7 @@ void adb_server_cleanup() {

static void intentionally_leak() {
    void* p = ::operator new(1);
    // The analyzer is upset about this leaking. NOLINTNEXTLINE
    LOG(INFO) << "leaking pointer " << p;
}