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

Commit 9752654c authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "ARTSPConnection: HTTP Authentication: Fix URI bounds"

parents b12f55b3 14d88efa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -954,7 +954,7 @@ static void GetMethodAndURL(
    CHECK_GE(space2, 0);

    method->setTo(request, 0, space1);
    url->setTo(request, space1 + 1, space2 - space1);
    url->setTo(request, space1 + 1, space2 - space1 - 1);
}

void ARTSPConnection::addAuthentication(AString *request) {