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

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

Fix build

am: 6f85d831

Change-Id: I0cb54cb073f83f43fb77b979f7b84911125d0969
parents 4828c2cc 6f85d831
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;