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

Commit d0711b42 authored by Todd Kennedy's avatar Todd Kennedy Committed by android-build-merger
Browse files

Merge "use negative mask" am: 4e427f0a

am: 469295f6

* commit '469295f6':
  use negative mask
parents 357cb908 469295f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1066,7 +1066,7 @@ int dexopt(const char *apk_path, uid_t uid, const char *pkgname, const char *ins
    bool boot_complete = (dexopt_flags & DEXOPT_BOOTCOMPLETE) != 0;
    bool boot_complete = (dexopt_flags & DEXOPT_BOOTCOMPLETE) != 0;
    bool use_jit = (dexopt_flags & DEXOPT_USEJIT) != 0;
    bool use_jit = (dexopt_flags & DEXOPT_USEJIT) != 0;


    if ((dexopt_flags & DEXOPT_MASK) != 0) {
    if ((dexopt_flags & ~DEXOPT_MASK) != 0) {
        LOG_FATAL("dexopt flags contains unknown fields\n");
        LOG_FATAL("dexopt flags contains unknown fields\n");
    }
    }