diff options
author | Hari Prasath Gujulan Elango <hgujulan@visteon.com> | 2015-06-18 09:27:28 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-06-19 00:15:17 -0400 |
commit | 7f5ad0181621b08f68e2d4b772f410aec580642b (patch) | |
tree | e9ea06c0ae1b180c637d036cf3af85ed57e49daf /drivers/staging | |
parent | d8a76d669a09b49305988c7c27b09eb1fbe4b85a (diff) |
staging: dgnc: free memory allocated
The memory allocated in dgnc_tty_register() for two objects is not freed
anywhere.This patch addresses this by freeing the memory in
dgnc_tty_uninit.
Signed-off-by: Hari Prasath Gujulan Elango <hgujulan@visteon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/dgnc/dgnc_tty.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/staging/dgnc/dgnc_tty.c b/drivers/staging/dgnc/dgnc_tty.c index 5c5c4b774256..fbfe79a70263 100644 --- a/drivers/staging/dgnc/dgnc_tty.c +++ b/drivers/staging/dgnc/dgnc_tty.c | |||
@@ -422,8 +422,12 @@ void dgnc_tty_uninit(struct dgnc_board *brd) | |||
422 | 422 | ||
423 | kfree(brd->SerialDriver.ttys); | 423 | kfree(brd->SerialDriver.ttys); |
424 | brd->SerialDriver.ttys = NULL; | 424 | brd->SerialDriver.ttys = NULL; |
425 | kfree(brd->SerialDriver.termios); | ||
426 | brd->SerialDriver.termios = NULL; | ||
425 | kfree(brd->PrintDriver.ttys); | 427 | kfree(brd->PrintDriver.ttys); |
426 | brd->PrintDriver.ttys = NULL; | 428 | brd->PrintDriver.ttys = NULL; |
429 | kfree(brd->PrintDriver.termios); | ||
430 | brd->PrintDriver.termios = NULL; | ||
427 | } | 431 | } |
428 | 432 | ||
429 | /*======================================================================= | 433 | /*======================================================================= |