diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2017-01-04 21:34:42 +0100 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2017-06-02 11:33:52 +0400 |
commit | 541815ff7f54f45a60d058b1c499c4affff094e0 (patch) | |
tree | a50d8c62275dca04fc30127199ac7a4b507faa70 /chardev/char-console.c | |
parent | ef0f272f38e1e534dd05a5a611aa0eb15dc60cc1 (diff) |
char-win: close file handle except with console
Only the console handle shouldn't be closed, however, the "file" handle
should.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'chardev/char-console.c')
-rw-r--r-- | chardev/char-console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chardev/char-console.c b/chardev/char-console.c index c824937fe6..8d972c1506 100644 --- a/chardev/char-console.c +++ b/chardev/char-console.c @@ -29,7 +29,7 @@ static void qemu_chr_open_win_con(Chardev *chr, bool *be_opened, Error **errp) { - qemu_chr_open_win_file(chr, GetStdHandle(STD_OUTPUT_HANDLE)); + win_chr_set_file(chr, GetStdHandle(STD_OUTPUT_HANDLE), true); } static void char_console_class_init(ObjectClass *oc, void *data) |