Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp	(revision 43742)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp	(revision 43743)
@@ -196,7 +196,11 @@
     LogFlowThisFunc(("width=%lu, height=%lu, BPP=%lu\n",
                     (unsigned long)uWidth, (unsigned long)uHeight, (unsigned long)uBPP));
+
     if (!pbSupported)
         return E_POINTER;
     *pbSupported = TRUE;
+
+    if (!m_pMachineView)
+        return S_OK;
     QSize screen = m_pMachineView->maxGuestSize();
     if (   (screen.width() != 0)
@@ -210,4 +214,5 @@
     LogFlowThisFunc(("screenW=%lu, screenH=%lu -> aSupported=%s\n",
                     screen.width(), screen.height(), *pbSupported ? "TRUE" : "FALSE"));
+
     return S_OK;
 }
