Index: /trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibHostVersion.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibHostVersion.cpp	(revision 24022)
+++ /trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibHostVersion.cpp	(revision 24023)
@@ -70,5 +70,5 @@
  *
  * @param   u32ClientId          The client id returned by VbglR3InfoSvcConnect().
- * @param   bUpdate              Receives pointer to boolean flag indicating whether 
+ * @param   bUpdate              Receives pointer to boolean flag indicating whether
                                  an update was found or not.
  * @param   ppszHostVersion      Receives pointer of allocated version string.
@@ -86,5 +86,5 @@
     Assert(ppszGuestVersion);
 
-    /* We assume we have an update initially. 
+    /* We assume we have an update initially.
        Every block down below is allowed to veto */
     *bUpdate = true;
@@ -110,6 +110,7 @@
         }
         VbglR3GuestPropReadValueFree(pszCheckHostVersion);
-    }    
-
+    }
+
+    /* Collect all needed information */
     /* Make sure we only notify the user once by comparing the host version with
      * the last checked host version (if any) */
@@ -143,11 +144,13 @@
         }
 
+        /* Look up guest version */
         if (RT_SUCCESS(rc))
         {
-            /* Look up guest version */
             rc = VbglR3GetAdditionsVersion(ppszGuestVersion, NULL /* Revision not needed here */);
-        }
-    }
-     
+            if (RT_FAILURE(rc))
+                LogFlow(("Could not read VBox guest version! rc = %d\n", rc));
+        }
+    }
+
     /* Do the actual version comparison (if needed, see block(s) above) */
     if (RT_SUCCESS(rc) && *bUpdate)
@@ -202,5 +205,5 @@
 {
     Assert(u32ClientId > 0);
-    Assert(pszVer);  
+    Assert(pszVer);
     return VbglR3GuestPropWriteValue(u32ClientId, "/VirtualBox/GuestAdd/HostVerLastChecked", pszVer);
 }
