From d7378ee1c159ee0bf6deffa9e87020cb820af45c Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Tue, 7 Feb 2012 15:09:11 +0100 Subject: [PATCH] qemu-char: qemu_chr_open_fd() can't fail, don't check Cleaned up silently in commit aad04cd0, but that just got reverted. Re-apply this part. Reviewed-by: Anthony Liguori Signed-off-by: Markus Armbruster Signed-off-by: Anthony Liguori --- qemu-char.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/qemu-char.c b/qemu-char.c index c25863a15f..bb9e3f50a8 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -1226,10 +1226,6 @@ static CharDriverState *qemu_chr_open_tty(QemuOpts *opts) } tty_serial_init(fd, 115200, 'N', 8, 1); chr = qemu_chr_open_fd(fd, fd); - if (!chr) { - close(fd); - return NULL; - } chr->chr_ioctl = tty_serial_ioctl; chr->chr_close = qemu_chr_close_tty; return chr;