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

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

am 44f2b8c2: Merge "M3UParser: Fix typo in 8883a38a"

* commit '44f2b8c2':
  M3UParser: Fix typo in 8883a38a
parents 908d31d7 44f2b8c2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -425,7 +425,7 @@ static bool MakeURL(const char *baseURL, const char *url, AString *out) {
            end = strlen(baseURL);
        }
        // Check for the last slash before a potential query string
        for (ssize_t pos - 1 = end; pos >= 0; pos--) {
        for (ssize_t pos = end - 1; pos >= 0; pos--) {
            if (baseURL[pos] == '/') {
                end = pos;
                break;