Index: /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Helper.cpp
===================================================================
--- /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Helper.cpp	(revision 29624)
+++ /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Helper.cpp	(revision 29625)
@@ -133,5 +133,5 @@
         req2->bpp    = bpp;
         rc = VbglGRPerform(&req2->header);
-        if (RT_SUCCESS(rc) && RT_SUCCESS(req2->header.rc))
+        if (RT_SUCCESS(rc))
         {
             bRC = req2->fSupported;
@@ -153,5 +153,5 @@
 
             rc = VbglGRPerform(&req->header);
-            if (RT_SUCCESS(rc) && RT_SUCCESS(req->header.rc))
+            if (RT_SUCCESS(rc))
             {
                 bRC = req->fSupported;
@@ -379,5 +379,5 @@
         rc = VbglGRPerform (&req->header);
 
-        if (RT_SUCCESS(rc) && RT_SUCCESS(req->header.rc))
+        if (RT_SUCCESS(rc))
         {
             bRC = TRUE;
Index: /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp
===================================================================
--- /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp	(revision 29624)
+++ /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp	(revision 29625)
@@ -3372,9 +3372,4 @@
             {
                 dprintf(("VBoxVideo::vboxVbvaEnable: rc = %Rrc!\n", rc));
-
-                if (RT_SUCCESS(rc))
-                {
-                    rc = req->header.rc;
-                }
             }
 
Index: /trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp	(revision 29624)
+++ /trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp	(revision 29625)
@@ -246,8 +246,6 @@
         pReq->u32NotMask = ~fMask;
         rc = VbglGRPerform(&pReq->header);
-        if (    RT_FAILURE(rc)
-            ||  RT_FAILURE(pReq->header.rc))
-            LogRel(("vboxGuestSetFilterMask: failed with rc=%Rrc and VMMDev rc=%Rrc\n",
-                    rc, pReq->header.rc));
+        if (RT_FAILURE(rc))
+            LogRel(("vboxGuestSetFilterMask: failed with rc=%Rrc\n", rc));
         VbglGRFree(&pReq->header);
     }
@@ -1143,10 +1141,5 @@
     rc = VbglGRPerform(&pReq->header);
     if (RT_FAILURE(rc))
-        Log(("VBoxGuestSetGuestCapabilities:VbglGRPerform failed, rc=%Rrc!\n", rc));
-    else if (RT_FAILURE(pReq->header.rc))
-    {
-        Log(("VBoxGuestSetGuestCapabilities: The request failed; VMMDev rc=%Rrc!\n", pReq->header.rc));
-        rc = pReq->header.rc;
-    }
+        Log(("VBoxGuestSetGuestCapabilities: VbglGRPerform failed, rc=%Rrc!\n", rc));
 
     VbglGRFree(&pReq->header);
@@ -1492,9 +1485,4 @@
     if (RT_FAILURE(rc))
         Log(("VBoxGuestCommonIOCtl: CTL_FILTER_MASK: VbglGRPerform failed, rc=%Rrc!\n", rc));
-    else if (RT_FAILURE(pReq->header.rc))
-    {
-        Log(("VBoxGuestCommonIOCtl: CTL_FILTER_MASK: The request failed; VMMDev rc=%Rrc!\n", pReq->header.rc));
-        rc = pReq->header.rc;
-    }
 
     VbglGRFree(&pReq->header);
