mirror of https://github.com/xemu-project/xemu.git
qemu-file: Use qemu_file_is_writable() on stdio_fclose()
Use the existing function which checks if writev_buffer() or put_buffer() are set, instead of duplicating it. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
e68dd36596
commit
532bc727c3
|
@ -175,7 +175,7 @@ static int stdio_fclose(void *opaque)
|
|||
QEMUFileStdio *s = opaque;
|
||||
int ret = 0;
|
||||
|
||||
if (s->file->ops->put_buffer || s->file->ops->writev_buffer) {
|
||||
if (qemu_file_is_writable(s->file)) {
|
||||
int fd = fileno(s->stdio_file);
|
||||
struct stat st;
|
||||
|
||||
|
|
Loading…
Reference in New Issue