summaryrefslogtreecommitdiff
path: root/src/video_out/video_out_xv.c
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-12-07 23:00:07 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-12-07 23:00:07 +0000
commit2271dbe3df3cf8ae322c5532e794a04f31ee5811 (patch)
tree5130c1ad96e4424c2a8958737087ed2dabb7496d /src/video_out/video_out_xv.c
parentb04faf7407c9c47f615d50799517ff25a5cb6ccc (diff)
downloadxine-lib-2271dbe3df3cf8ae322c5532e794a04f31ee5811.tar.gz
xine-lib-2271dbe3df3cf8ae322c5532e794a04f31ee5811.tar.bz2
All gui_data_exchange containing X calls may xlocked/xunlocked. Don't forget
to xfreeing gc before creating a new one. CVS patchset: 3459 CVS date: 2002/12/07 23:00:07
Diffstat (limited to 'src/video_out/video_out_xv.c')
-rw-r--r--src/video_out/video_out_xv.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c
index 61e7a13d6..44862a692 100644
--- a/src/video_out/video_out_xv.c
+++ b/src/video_out/video_out_xv.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_xv.c,v 1.153 2002/12/06 01:33:01 miguelfreitas Exp $
+ * $Id: video_out_xv.c,v 1.154 2002/12/07 23:00:09 f1rmb Exp $
*
* video_out_xv.c, X11 video extension interface for xine
*
@@ -911,7 +911,11 @@ static int xv_gui_data_exchange (vo_driver_t *this_gen,
case XINE_GUI_SEND_DRAWABLE_CHANGED:
this->drawable = (Drawable) data;
- this->gc = XCreateGC (this->display, this->drawable, 0, NULL);
+
+ XLockDisplay (this->display);
+ XFreeGC(this->display, this->gc);
+ this->gc = XCreateGC (this->display, this->drawable, 0, NULL);
+ XUnlockDisplay (this->display);
break;
case XINE_GUI_SEND_TRANSLATE_GUI_TO_VIDEO: