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
This commit is contained in:
Linus Torvalds 2007-05-21 09:00:25 -07:00
commit 5f663404b2
1 changed files with 3 additions and 1 deletions

View File

@ -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);