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

Commit 896a9f00 authored by Hendrik Hagendorn's avatar Hendrik Hagendorn Committed by android-build-merger
Browse files

Merge "ARTSPConnection: HTTP Authentication: Fix URI bounds"

am: 9752654c

Change-Id: I1b06fdd3ff04cad107ed3a8c9bdd36f839e53297
parents 9370c4ab 9752654c
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) {