crypt_burn: Proper cleanup

This commit is contained in:
Tobias Brunner 2013-03-25 18:04:38 +01:00
parent d4f2f3dd7f
commit 51caeeb161
1 changed files with 2 additions and 0 deletions

View File

@ -89,6 +89,7 @@ int main(int argc, char *argv[])
break; break;
} }
} }
aead->destroy(aead);
} }
else else
{ {
@ -120,6 +121,7 @@ int main(int argc, char *argv[])
break; break;
} }
} }
crypter->destroy(crypter);
} }
return 0; return 0;
} }