Fix memory leak in the test program

This commit is contained in:
Samuel Lidén Borell 2014-02-15 22:38:31 +00:00 committed by Berke Viktor
parent d8c80cd277
commit d190773d09
1 changed files with 2 additions and 0 deletions

View File

@ -46,6 +46,7 @@ static int decrypt(int nick_count, char *nicks[]) {
return 1;
success:
fprintf(stderr, "Decrypted text >>>%s<<<\n", msg);
free(msg);
}
return 0;
}
@ -62,6 +63,7 @@ static int encrypt(int nick_count, char *nicks[]) {
char *encrypted = fish_encrypt_for_nick(nicks[i], message);
if (encrypted) {
fprintf(stderr, "Encrypted [%s]: >>>%s<<<\n", nicks[i], encrypted);
free(encrypted);
} else {
error = true;
}