Skip to content

Commit

Permalink
Merge master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6
Browse files Browse the repository at this point in the history
* master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6:
  [CRYPTO] api: Read module pointer before freeing algorithm
  • Loading branch information
Linus Torvalds committed May 21, 2007
2 parents 55b637c + da7cd59 commit 5f66340
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crypto/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 5f66340

Please sign in to comment.