[CRYPTO] api: Read module pointer before freeing algorithm
authorHerbert Xu <herbert@gondor.apana.org.au>
Sat, 19 May 2007 04:51:00 +0000 (14:51 +1000)
committerHerbert Xu <herbert@gondor.apana.org.au>
Sat, 19 May 2007 04:51:00 +0000 (14:51 +1000)
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>

No differences found