mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 23:50:53 +07:00
95566aa75c
There is a possible double free issue in ppc4xx_trng_probe():
85: dev->trng_base = of_iomap(trng, 0);
86: of_node_put(trng); ---> released here
87: if (!dev->trng_base)
88: goto err_out;
...
110: ierr_out:
111: of_node_put(trng); ---> double released here
...
This issue was detected by using the Coccinelle software.
We fix it by removing the unnecessary of_node_put().
Fixes:
|
||
---|---|---|
.. | ||
crypto4xx_alg.c | ||
crypto4xx_core.c | ||
crypto4xx_core.h | ||
crypto4xx_reg_def.h | ||
crypto4xx_sa.h | ||
crypto4xx_trng.c | ||
crypto4xx_trng.h | ||
Makefile |