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

Commit b8d23091 authored by Robert Shih's avatar Robert Shih Committed by android-build-merger
Browse files

Fix build am: 6f85d831 am: cea60415 am: ac11d74c

am: 94742171

Change-Id: Ifa1e2ab0d259b2919a4f250d84209987aa0eb71a
parents a365cebb 94742171
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ void SoftMP3::initDecoder() {

void *SoftMP3::memsetSafe(OMX_BUFFERHEADERTYPE *outHeader, int c, size_t len) {
    if (len > outHeader->nAllocLen) {
        ALOGE("memset buffer too small: got %lu, expected %zu", (unsigned long)outHeader->nAllocLen, len);
        ALOGE("memset buffer too small: got %u, expected %zu", outHeader->nAllocLen, len);
        android_errorWriteLog(0x534e4554, "29422022");
        notify(OMX_EventError, OMX_ErrorUndefined, OUTPUT_BUFFER_TOO_SMALL, NULL);
        mSignalledError = true;