diff options
author | sin <sin@2f30.org> | 2014-09-22 12:23:23 +0100 |
---|---|---|
committer | sin <sin@2f30.org> | 2014-09-22 12:23:23 +0100 |
commit | 1a43beddb893b9198103a42aac3e8773f1af3cef (patch) | |
tree | cade232122e7008294971a4dada8ac3dfd3ac97a | |
parent | c172129d1e28cf27ccb5d30f0648a73a726dc94e (diff) |
Just realloc(), don't leak if we get called more than once
-rw-r--r-- | ratox.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |