OSDN Git Service

qxl: dont update invalid area
authorDunrong Huang <riegamaths@gmail.com>
Thu, 30 Aug 2012 16:44:44 +0000 (00:44 +0800)
committerGerd Hoffmann <kraxel@redhat.com>
Wed, 12 Sep 2012 06:09:48 +0000 (08:09 +0200)
commitccc2960d654a233a6ed415b37d8ff41728d817c5
treea5f7bc8f18704bfa37403fb97819dad2add0abdb
parentb021bd29835b0367d499e042f76afbbf4b6ee026
qxl: dont update invalid area

This patch fixes the following error:

$ ~/usr/bin/qemu-system-x86_64 -enable-kvm -m 1024 -spice port=5900,disable-ticketing -vga qxl -cdrom ~/Images/linuxmint-13-mate-dvd-32bit.iso
(/home/mathslinux/usr/bin/qemu-system-x86_64:10068): SpiceWorker-CRITICAL **: red_worker.c:4599:red_update_area: condition `area->left >= 0 && area->top >= 0 && area->left < area->right && area->top < area->bottom' failed
Aborted

spice server terminates QEMU process if we pass invalid area to it,
so dont update those invalid areas.

Signed-off-by: Dunrong Huang <riegamaths@gmail.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
hw/qxl.c