Index: /trunk/src/VBox/Main/src-server/CloudUserProfileManagerImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/CloudUserProfileManagerImpl.cpp	(revision 73169)
+++ /trunk/src/VBox/Main/src-server/CloudUserProfileManagerImpl.cpp	(revision 73170)
@@ -62,7 +62,13 @@
 HRESULT CloudUserProfileManager::init(VirtualBox *aParent)
 {
+    /* Enclose the state transition NotReady->InInit->Ready */
+    AutoInitSpan autoInitSpan(this);
+    AssertReturn(autoInitSpan.isOk(), E_FAIL);
+
     unconst(mParent) = aParent;
     mSupportedProviders.clear();
     mSupportedProviders.push_back(CloudProviderId_OCI);
+
+    autoInitSpan.setSucceeded();
     return S_OK;
 }
