projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c6f32e
)
ioemu: fix a bug in serial_load
author
Keir Fraser
<keir.fraser@citrix.com>
Wed, 6 Aug 2008 08:46:25 +0000
(09:46 +0100)
committer
Keir Fraser
<keir.fraser@citrix.com>
Wed, 6 Aug 2008 08:46:25 +0000
(09:46 +0100)
Currently we are trying to read the same value twice in the
serial_load function, this patch fixes that.
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
tools/ioemu/hw/serial.c
patch
|
blob
|
history
diff --git
a/tools/ioemu/hw/serial.c
b/tools/ioemu/hw/serial.c
index c6758315a28fe8025d58f4c807534a505ffbf9a0..30d9fbe620cb0bf430327109aad466903117564d 100644
(file)
--- a/
tools/ioemu/hw/serial.c
+++ b/
tools/ioemu/hw/serial.c
@@
-728,7
+728,6
@@
static int serial_load(QEMUFile *f, void *opaque, int version_id)
qemu_get_8s(f,&s->lsr);
qemu_get_8s(f,&s->msr);
qemu_get_8s(f,&s->scr);
- qemu_get_8s(f,&s->fcr);
if (version_id >= 2)
qemu_get_8s(f,&fcr);