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

Commit b55ddfee 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 am: 97f05421

am: ac18e8a9

Change-Id: Id71496109da78a92803c2798bcc4c55411dc4fee
parents eadd69b8 ac18e8a9
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;
}