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

Commit 78ccbf55 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge changes Ie5b66d6c,Ia1004ca6

* changes:
  Revert "Otapreopt: Work around bug 38186355"
  Clean up possible null dereference warning.
parents 42a57522 3f94b5e2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -148,6 +148,7 @@ void CacheTracker::loadItemsFrom(const std::string& path) {
        }

        // Bubble up modified time to parent
        CHECK(p != nullptr);
        switch (p->fts_info) {
        case FTS_DP:
        case FTS_DEFAULT:
+0 −4
Original line number Diff line number Diff line
@@ -753,10 +753,6 @@ private:
    }

    static const char* ParseNull(const char* arg) {
        // b/38186355. Revert soon.
        if (strcmp(arg, "!null") == 0) {
            return nullptr;
        }
        return (strcmp(arg, "!") == 0) ? nullptr : arg;
    }