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

Commit b3d817bd authored by Khalid Ramadan's avatar Khalid Ramadan
Browse files

Remove word san-ity to follow respectful code

Follow respectful code principles in link
https://source.android.com/setup/contribute/respectful-code

Test: No-tests change
Bug: 206386553
Change-Id: I6f10a8550b5b815f8127c1a73523458fdc15d2fe
parent f364c8d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -824,7 +824,7 @@ void* Parcel::writeInplace(size_t len)

    const size_t padded = pad_size(len);

    // sanity check for integer overflow
    // check for integer overflow
    if (mDataPos+padded < mDataPos) {
        return nullptr;
    }