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