mirror of https://github.com/torvalds/linux.git
When chtls_sock *csk is freed, same memory can be allocated
to different csk in chtls_sock_create().
csk->cdev = NULL; statement might ends up modifying wrong
csk, eventually causing kernel panic.
removing (csk->cdev = NULL) statement as it is not required.
Fixes:
|
||
|---|---|---|
| .. | ||
| Makefile | ||
| chtls.h | ||
| chtls_cm.c | ||
| chtls_cm.h | ||
| chtls_hw.c | ||
| chtls_io.c | ||
| chtls_main.c | ||