summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-05 11:57:06 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-05 11:57:06 +0000
commite5e820981f0103abc37cfca4a1b704ffaac48f69 (patch)
treed0baa04ac80487a2a30385e480b4ff49fe94f1af /libvo
parentc9614cb422320c53a16849a54db37ad9c80187d8 (diff)
downloadmpv-e5e820981f0103abc37cfca4a1b704ffaac48f69.tar.bz2
mpv-e5e820981f0103abc37cfca4a1b704ffaac48f69.tar.xz
Do not abort on X11 errors, most are not at all fatal.
Makes -vo x11 work over non-trusted ssh X11 forwarding. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21826 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/x11_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/x11_common.c b/libvo/x11_common.c
index 932e546873..78db568eb5 100644
--- a/libvo/x11_common.c
+++ b/libvo/x11_common.c
@@ -208,7 +208,7 @@ static int x11_errorhandler(Display * display, XErrorEvent * event)
"Error code: %x, request code: %x, minor code: %x\n",
event->error_code, event->request_code, event->minor_code);
- abort();
+// abort();
//exit_player("X11 error");
#undef MSGLEN
}