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

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

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

* commit 'ef620093':
  Correct ID3::StringSize calculation for UCS-2 data.
parents 4bb0e2aa ef620093
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 *