aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/main.c b/main.c
index de87cab..185a5cc 100644
--- a/main.c
+++ b/main.c
@@ -203,14 +203,16 @@ totp(struct totp_config conf, uint32_t *code)
clean = false;
} else {
enc_sec_len += 8 - enc_sec_len % 8;
- enc_sec = malloc(enc_sec_len);
+ if ((enc_sec = malloc(enc_sec_len)) == NULL)
+ err(EXIT_FAILURE, "malloc");
memcpy(enc_sec, conf.enc_sec, old);
memset(enc_sec + old, '=', enc_sec_len - old);
clean = true;
}
- keylen = old * 5 / 8;
- key = calloc(keylen, sizeof(char));
+ keylen = old / 1.6;
+ if ((key = calloc(keylen + 1, sizeof(char))) == NULL)
+ err(EXIT_FAILURE, "calloc");
b32toa(key, enc_sec, enc_sec_len);
if (time(&epoch) == (time_t)-1) {