1
0
Fork 0

crypto: seqiv - Fix module unload/reload crash

On module unload we weren't unregistering the seqniv template,
thus leading to a crash the next time someone walks the template
list.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
hifive-unleashed-5.1
Herbert Xu 2015-05-27 14:37:40 +08:00
parent ccdb8a0384
commit 056c04ba8b
1 changed files with 1 additions and 0 deletions

View File

@ -874,6 +874,7 @@ out_undo_niv:
static void __exit seqiv_module_exit(void)
{
crypto_unregister_template(&seqniv_tmpl);
crypto_unregister_template(&seqiv_tmpl);
}