aboutsummaryrefslogtreecommitdiff
path: root/lib/libfetch
diff options
context:
space:
mode:
authorStefan Eßer <se@FreeBSD.org>2022-04-20 14:56:57 +0000
committerStefan Eßer <se@FreeBSD.org>2022-04-20 14:58:33 +0000
commitce700f78f7fb28a252978382a1d0a66d08b6469a (patch)
tree9388dab99aae08e3f1c8062335621537056c2cd7 /lib/libfetch
parent45a4c442996edafbe49caecb33a6e1226ab51a8e (diff)
libfetch: remove a set-but-not-uswed variable
Diffstat (limited to 'lib/libfetch')
-rw-r--r--lib/libfetch/http.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/libfetch/http.c b/lib/libfetch/http.c
index bcb089dc0fc4..c1d92d08b317 100644
--- a/lib/libfetch/http.c
+++ b/lib/libfetch/http.c
@@ -976,13 +976,12 @@ http_base64(const char *src)
"0123456789+/";
char *str, *dst;
size_t l;
- int t, r;
+ int t;
l = strlen(src);
if ((str = malloc(((l + 2) / 3) * 4 + 1)) == NULL)
return (NULL);
dst = str;
- r = 0;
while (l >= 3) {
t = (src[0] << 16) | (src[1] << 8) | src[2];
@@ -991,7 +990,7 @@ http_base64(const char *src)
dst[2] = base64[(t >> 6) & 0x3f];
dst[3] = base64[(t >> 0) & 0x3f];
src += 3; l -= 3;
- dst += 4; r += 4;
+ dst += 4;
}
switch (l) {
@@ -1002,7 +1001,6 @@ http_base64(const char *src)
dst[2] = base64[(t >> 6) & 0x3f];
dst[3] = '=';
dst += 4;
- r += 4;
break;
case 1:
t = src[0] << 16;
@@ -1010,7 +1008,6 @@ http_base64(const char *src)
dst[1] = base64[(t >> 12) & 0x3f];
dst[2] = dst[3] = '=';
dst += 4;
- r += 4;
break;
case 0:
break;