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

Commit 44f2b8c2 authored by Marco Nelissen's avatar Marco Nelissen Committed by Gerrit Code Review
Browse files

Merge "M3UParser: Fix typo in 8883a38a"

parents 8519b8a1 c5fab66b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -425,7 +425,7 @@ static bool MakeURL(const char *baseURL, const char *url, AString *out) {
            end = strlen(baseURL);
            end = strlen(baseURL);
        }
        }
        // Check for the last slash before a potential query string
        // 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] == '/') {
            if (baseURL[pos] == '/') {
                end = pos;
                end = pos;
                break;
                break;