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

Commit c5fab66b authored by Martin Storsjo's avatar Martin Storsjo
Browse files

M3UParser: Fix typo in 8883a38a

Change-Id: I09f8deb40b8b34efd4bfcfab6866b7780f8bae96
parent 8519b8a1
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;