summaryrefslogtreecommitdiff
path: root/ratox.c
diff options
context:
space:
mode:
Diffstat (limited to 'ratox.c')
-rw-r--r--ratox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ratox.c b/ratox.c
index bf2121e..bbff027 100644
--- a/ratox.c
+++ b/ratox.c
@@ -564,7 +564,7 @@ readpass(void)
}
if (p[0] == '\0')
return -1;
- passphrase = malloc(strlen(p)); /* not null-terminated */
+ passphrase = realloc(passphrase, strlen(p)); /* not null-terminated */
if (!passphrase) {
perror("malloc");
exit(EXIT_FAILURE);