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

Commit 96e489dc authored by Manoj Gupta's avatar Manoj Gupta Committed by android-build-merger
Browse files

Merge "Fix static analyzer warnings."

am: 5b843179

Change-Id: I8bb16947a6fcc156e2bbe74dbc8f27d4318f9b9d
parents 71f6de41 5b843179
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -182,10 +182,12 @@ Value& Value::swap(Value &rhs)

Value& Value::operator=(const Value& rhs)
{
    if (this != &rhs) {
        delete mContent;
        mContent = rhs.mContent
            ? rhs.mContent->clone()
            : NULL;
    }
    return *this;
}