mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-05 18:59:58 +00:00
[CRYPTO] api: Read module pointer before freeing algorithm
The function crypto_mod_put first frees the algorithm and then drops the reference to its module. Unfortunately we read the module pointer which after freeing the algorithm and that pointer sits inside the object that we just freed. So this patch reads the module pointer out before we free the object. Thanks to Luca Tettamanti for reporting this. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
29059d12e0
commit
da7cd59ab9
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue