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

Commit f67bff32 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix crash by wrong assertion check"

parents 0db208d0 b9d68327
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ class JavaByteArrayHolder {
    }

    ~JavaByteArrayHolder() {
        LOG_ALWAYS_FATAL_IF(mElements == nullptr, "Elements are not released");
        LOG_ALWAYS_FATAL_IF(mElements != nullptr, "Elements are not released");
    }

  private: