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

Commit 97f05421 authored by Manoj Gupta's avatar Manoj Gupta Committed by android-build-merger
Browse files

Merge "Fix static analyzer warnings." am: 5b843179 am: 96e489dc

am: 369b2032

Change-Id: I1a3b4c55cc00553b38b5f817f5084e6082d86497
parents 8578b68a 369b2032
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;
}