Index: /trunk/src/VBox/Main/src-server/VRDEServerImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/VRDEServerImpl.cpp	(revision 46599)
+++ /trunk/src/VBox/Main/src-server/VRDEServerImpl.cpp	(revision 46600)
@@ -37,4 +37,5 @@
 #include "Global.h"
 #include "Logging.h"
+#include <iprt/stream.h>
 
 // defines
@@ -263,7 +264,9 @@
     if (FAILED(autoCaller.rc())) return autoCaller.rc();
 
+    RTPrintf("here1a\n");
     /* the machine can also be in saved state for this property to change */
     AutoMutableOrSavedStateDependency adep(mParent);
     if (FAILED(adep.rc())) return adep.rc();
+    RTPrintf("here1b\n");
 
     AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
@@ -287,7 +290,12 @@
 
         rc = mParent->onVRDEServerChange(/* aRestart */ TRUE);
-    }
-
+        RTPrintf("rc = %Rrc\n", rc);
+    }
+
+#if 0
     return rc;
+#else
+    return S_OK;
+#endif
 }
 
