Эх сурвалжийг харах

pty: Fix allocation failure double free

The updating and moving around of the pty code added a bug where both the
helper and caller free the main tty struct (the pty driver must free the
o_tty pair itself however).

Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Alan Cox 16 жил өмнө
parent
commit
335adde689

+ 0 - 2
drivers/char/pty.c

@@ -544,8 +544,6 @@ free_mem_out:
 	module_put(o_tty->driver->owner);
 	module_put(o_tty->driver->owner);
 	free_tty_struct(o_tty);
 	free_tty_struct(o_tty);
 	pty_unix98_shutdown(tty);
 	pty_unix98_shutdown(tty);
-	free_tty_struct(tty);
-	module_put(driver->owner);
 	return -ENOMEM;
 	return -ENOMEM;
 }
 }