Fix crash when returning from monitor or serial console to normal TCX view
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>
Thu, 19 Jun 2008 15:56:22 +0000 (15:56 +0000)
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>
Thu, 19 Jun 2008 15:56:22 +0000 (15:56 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4750 c046a42c-6fe2-441c-8c8c-71466251a162

hw/tcx.c

index c72b999..f0ae53f 100644 (file)
--- a/hw/tcx.c
+++ b/hw/tcx.c
@@ -186,6 +186,8 @@ static void tcx_update_display(void *opaque)
 
     if (ts->ds->depth == 0)
         return;
+    if (ts->ds->width != ts->width || ts->ds->height != ts->height)
+        dpy_resize(ts->ds, ts->width, ts->height);
     page = ts->vram_offset;
     y_start = -1;
     page_min = 0xffffffff;