Xephyr: remove a potential crasher

* hw/kdrive/ephyr/hostx.c:
	  (hostx_has_dri): be more defensive.
This commit is contained in:
Dodji Seketeli 2007-10-04 13:05:29 +02:00
parent 06c8977966
commit ab11bad547

View File

@ -1328,6 +1328,9 @@ hostx_has_dri (void)
int event_base=0, error_base=0 ;
Display *dpy=hostx_get_display () ;
if (!dpy)
return FALSE ;
if (!XF86DRIQueryExtension (dpy,
&event_base,
&error_base)) {