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

Commit 491c3314 authored by Dan Austin's avatar Dan Austin Committed by android-build-merger
Browse files

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

am: bbc96beb

* commit 'bbc96beb':
  Address const issues in preparation for libcxx rebase.
parents 59d25cac bbc96beb
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);
    }