Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/request.c
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,9 @@ static void canonicalize_resource(const S3BucketContext *context,
}
}

append("/");
if(*urlEncodedKey != '/') {
append("/");
}

if (urlEncodedKey && urlEncodedKey[0]) {
append(urlEncodedKey);
Expand Down Expand Up @@ -1111,7 +1113,9 @@ static S3Status compose_uri(char *buffer, int bufferSize,
uri_append("%s", hostName);
}

uri_append("%s", "/");
if(*urlEncodedKey != '/') {
uri_append("%s", "/");
}

uri_append("%s", urlEncodedKey);

Expand Down