Revert "staging: dgap: remove unneeded kfree() in dgap_tty_register_ports()"
This reverts commit 0ade4a34fd as it was
wrong.
Cc: Dan Carpenter <dan.carpenter@oracle.com>
Cc: Daeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
@@ -4145,8 +4145,10 @@ static int dgap_tty_register_ports(struct board_t *brd)
|
|||||||
|
|
||||||
brd->printer_ports = kcalloc(brd->nasync, sizeof(*brd->printer_ports),
|
brd->printer_ports = kcalloc(brd->nasync, sizeof(*brd->printer_ports),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
if (!brd->printer_ports)
|
if (!brd->printer_ports) {
|
||||||
|
kfree(brd->serial_ports);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
for (i = 0; i < brd->nasync; i++) {
|
for (i = 0; i < brd->nasync; i++) {
|
||||||
tty_port_init(&brd->serial_ports[i]);
|
tty_port_init(&brd->serial_ports[i]);
|
||||||
|
|||||||
Reference in New Issue
Block a user