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

Commit ef620093 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

am efee0095: Merge "Correct ID3::StringSize calculation for UCS-2 data."

* commit 'efee0095':
  Correct ID3::StringSize calculation for UCS-2 data.
parents 662b15c3 efee0095
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -743,7 +743,8 @@ static size_t StringSize(const uint8_t *start, uint8_t encoding) {
        n += 2;
    }

    return n;
    // Add size of null termination.
    return n + 2;
}

const void *