crypt_burn: Proper cleanup

This commit is contained in:
Tobias Brunner
2013-03-25 18:40:32 +01:00
parent d4f2f3dd7f
commit 51caeeb161
+2
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;
} }