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

Commit bbc96beb authored by Dan Austin's avatar Dan Austin Committed by Gerrit Code Review
Browse files

Merge "Address const issues in preparation for libcxx rebase."

parents 231938ca 51df8dfd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -182,7 +182,7 @@ MediaCodecList::MediaCodecList()

void MediaCodecList::parseTopLevelXMLFile(const char *codecs_xml, bool ignore_errors) {
    // get href_base
    char *href_base_end = strrchr(codecs_xml, '/');
    const char *href_base_end = strrchr(codecs_xml, '/');
    if (href_base_end != NULL) {
        mHrefBase = AString(codecs_xml, href_base_end - codecs_xml + 1);
    }