]> source.dussan.org Git - tigervnc.git/commitdiff
RRRegisterRate() can in theory fail. Make sure we catch this.
authorPierre Ossman <ossman@cendio.se>
Mon, 23 Mar 2009 16:28:53 +0000 (16:28 +0000)
committerPierre Ossman <ossman@cendio.se>
Mon, 23 Mar 2009 16:28:53 +0000 (16:28 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3709 3789f03b-4d11-0410-bbf8-ca57d06f2519

unix/xserver/hw/vnc/xvnc.cc

index 514ebf7de7dee57f8b13ddcec0a6df53d2cde485..ed09b80202d9b959269b5bf298ab8f0528ea7143 100644 (file)
@@ -802,7 +802,7 @@ static miPointerScreenFuncRec vfbPointerCursorFuncs = {
 static Bool vncRandRGetInfo (ScreenPtr pScreen, Rotation *rotations)
 {
   vfbScreenInfoPtr pvfb = &vfbScreens[pScreen->myNum];
-  Bool gotCurrent = FALSE;
+  Bool ret, gotCurrent = FALSE;
   int i;
 
   const int widths[] =  { 1920, 1920, 1600, 1680, 1400, 1360, 1280, 1280, 1280, 1280, 1024, 800, 640 };
@@ -816,7 +816,9 @@ static Bool vncRandRGetInfo (ScreenPtr pScreen, Rotation *rotations)
     if (!pSize)
       return FALSE;
 
-    RRRegisterRate(pScreen, pSize, 60);
+    ret = RRRegisterRate(pScreen, pSize, 60);
+    if (!ret)
+      return FALSE;
 
     if ((widths[i] == pScreen->width) && (heights[i] == pScreen->height)) {
       RRSetCurrentConfig(pScreen, RR_Rotate_0, 60, pSize);