Skip to content
Snippets Groups Projects
Commit d79f16c0 authored by David Miller's avatar David Miller Committed by David S. Miller
Browse files

mkiss: Fix use after free in mkiss_close().


Need to do the unregister_device() after all references to the driver
private have been done.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent acf673a3
Branches
Tags
No related merge requests found
......@@ -798,13 +798,13 @@ static void mkiss_close(struct tty_struct *tty)
if (!atomic_dec_and_test(&ax->refcnt))
down(&ax->dead_sem);
unregister_netdev(ax->dev);
/* Free all AX25 frame buffers. */
kfree(ax->rbuff);
kfree(ax->xbuff);
ax->tty = NULL;
unregister_netdev(ax->dev);
}
/* Perform I/O control on an active ax25 channel. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment