Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f663404 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6

* master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6:
  [CRYPTO] api: Read module pointer before freeing algorithm
parents 55b637c6 da7cd59a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -48,8 +48,10 @@ EXPORT_SYMBOL_GPL(crypto_mod_get);

void crypto_mod_put(struct crypto_alg *alg)
{
	struct module *module = alg->cra_module;

	crypto_alg_put(alg);
	module_put(alg->cra_module);
	module_put(module);
}
EXPORT_SYMBOL_GPL(crypto_mod_put);