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

Commit 0683db73 authored by Hendrik Hagendorn's avatar Hendrik Hagendorn Committed by android-build-merger
Browse files

Merge "ARTSPConnection: HTTP Authentication: Fix URI bounds" am: 9752654c am: 896a9f00

am: 80ae1629

Change-Id: I8e83a5700292109a106fdefbbac52279124d8d9a
parents 321d2134 80ae1629
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -954,7 +954,7 @@ static void GetMethodAndURL(
    CHECK_GE(space2, 0);
    CHECK_GE(space2, 0);


    method->setTo(request, 0, space1);
    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) {
void ARTSPConnection::addAuthentication(AString *request) {