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

Commit da0a48d2 authored by Marco Nelissen's avatar Marco Nelissen Committed by Android Git Automerger
Browse files

am 6020f066: am b294a97a: am 6cba5819: am 51bfaf6c: am 1afea551: am ce73af07:...

am 6020f066: am b294a97a: am 6cba5819: am 51bfaf6c: am 1afea551: am ce73af07: DO NOT MERGE Fail more gracefully on allocation failure

* commit '6020f066':
  DO NOT MERGE Fail more gracefully on allocation failure
parents c9924410 6020f066
Loading
Loading
Loading
Loading
+16 −6
Original line number Diff line number Diff line
@@ -288,7 +288,7 @@ MPEG4Extractor::~MPEG4Extractor() {
    SINF *sinf = mFirstSINF;
    while (sinf) {
        SINF *next = sinf->next;
        delete sinf->IPMPData;
        delete[] sinf->IPMPData;
        delete sinf;
        sinf = next;
    }
@@ -541,7 +541,11 @@ status_t MPEG4Extractor::parseDrmSINF(off64_t *offset, off64_t data_offset) {
                return ERROR_MALFORMED;
            }
            sinf->len = dataLen - 3;
            sinf->IPMPData = new char[sinf->len];
            sinf->IPMPData = new (std::nothrow) char[sinf->len];
            if (sinf->IPMPData == NULL) {
                return ERROR_MALFORMED;
            }
            data_offset += 2;

            if (mDataSource->readAt(data_offset + 2, sinf->IPMPData, sinf->len) < sinf->len) {
                return ERROR_IO;
@@ -1399,8 +1403,7 @@ status_t MPEG4Extractor::parseChunk(off64_t *offset, int depth) {
            if ((chunk_size > SIZE_MAX) || (SIZE_MAX - chunk_size <= size)) {
                return ERROR_MALFORMED;
            }

            uint8_t *buffer = new uint8_t[size + chunk_size];
            uint8_t *buffer = new (std::nothrow) uint8_t[size + chunk_size];
            if (buffer == NULL) {
                return ERROR_MALFORMED;
            }
@@ -1566,7 +1569,10 @@ status_t MPEG4Extractor::parseMetaData(off64_t offset, size_t size) {
        return ERROR_MALFORMED;
    }

    uint8_t *buffer = new uint8_t[size + 1];
    uint8_t *buffer = new (std::nothrow) uint8_t[size + 1];
    if (buffer == NULL) {
        return ERROR_MALFORMED;
    }
    if (mDataSource->readAt(
                offset, buffer, size) != (ssize_t)size) {
        delete[] buffer;
@@ -1973,7 +1979,11 @@ status_t MPEG4Source::start(MetaData *params) {

    mGroup->add_buffer(new MediaBuffer(max_size));

    mSrcBuffer = new uint8_t[max_size];
    mSrcBuffer = new (std::nothrow) uint8_t[max_size];
    if (mSrcBuffer == NULL) {
        // file probably specified a bad max size
        return ERROR_MALFORMED;
    }

    mStarted = true;