summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorIzik Eidus <ieidus@redhat.com>2009-10-22 15:17:11 +0200
committerYaniv Kamay <ykamay@redhat.com>2009-10-25 20:15:26 +0200
commit07c1a13fb32ccf0a01ef894d69ac95863813ed20 (patch)
treec1ee0a1debb8d92f41fceaa8cbcfe4e58e43fcda /client
parentef213c66c19d265140e9a55519b174d34ff1f16b (diff)
downloadspice-07c1a13fb32ccf0a01ef894d69ac95863813ed20.tar.gz
spice-07c1a13fb32ccf0a01ef894d69ac95863813ed20.tar.xz
spice-07c1a13fb32ccf0a01ef894d69ac95863813ed20.zip
spice xclient: move xsync() to be at the right place.
Signed-off-by: Izik Eidus <ieidus@redhat.com>
Diffstat (limited to 'client')
-rw-r--r--client/x11/red_pixmap_cairo.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/client/x11/red_pixmap_cairo.cpp b/client/x11/red_pixmap_cairo.cpp
index c1454865..d15c35c3 100644
--- a/client/x11/red_pixmap_cairo.cpp
+++ b/client/x11/red_pixmap_cairo.cpp
@@ -90,13 +90,6 @@ RedPixmapCairo::RedPixmapCairo(int width, int height, RedPixmap::Format format,
THROW("XShmAttach failed");
}
- /*
- * Workaround for weird problem that is seen in Fedora 10/11,
- * spice get bad access error, but I am not sure if the bug is in spice or in X
- * for now just use this workaround.
- */
- XSync(XPlatform::get_display(), False);
-
((PixelsSource_p*)get_opaque())->x_shm_drawable.x_image = image;
((PixelsSource_p*)get_opaque())->x_shm_drawable.shminfo = shminfo;
_data = (uint8_t *)shminfo->shmaddr;
@@ -190,6 +183,7 @@ RedPixmapCairo::~RedPixmapCairo()
XShmSegmentInfo *shminfo = ((PixelsSource_p*)get_opaque())->x_shm_drawable.shminfo;
XShmDetach(XPlatform::get_display(), shminfo);
XDestroyImage(((PixelsSource_p*)get_opaque())->x_shm_drawable.x_image);
+ XSync(XPlatform::get_display(), False);
shmdt(shminfo->shmaddr);
delete shminfo;
}