summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-10-18 11:24:53 +0200
committerdefault <nobody@localhost>2022-10-18 11:24:53 +0200
commitabca46d03745ecf563011f79368d9d162f5637db (patch)
tree5fc2d311c13ba83125841eeb45ba248c49e93298
parent6e28a810e1159410051e8275d051448658abb0d6 (diff)
xs_base64_dec() can now be used as a string, so do it.
-rw-r--r--html.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/html.c b/html.c
index 84a8140..da73d94 100644
--- a/html.c
+++ b/html.c
@@ -24,11 +24,7 @@ int login(snac *snac, char *headers)
xs *s1 = xs_crop(xs_dup(auth), 6, 0);
xs *s2 = xs_base64_dec(s1, &sz);
- /* copy to asciiz it */
- xs *s3 = calloc(sz + 1, 1);
- memcpy(s3, s2, sz);
-
- xs *l1 = xs_split_n(s3, ":", 1);
+ xs *l1 = xs_split_n(s2, ":", 1);
if (xs_list_len(l1) == 2) {
logged_in = check_password(