Index: /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceExec.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceExec.cpp	(revision 23652)
+++ /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceExec.cpp	(revision 23653)
@@ -137,4 +137,5 @@
     void   *pvBuf = NULL;
     int     rc;
+
     *ppszValue = NULL;
 
@@ -199,4 +200,5 @@
         break; /* done */
     }
+
     RTMemFree(pvBuf);
     return rc;
@@ -397,9 +399,7 @@
                                      * Store the result in Set return value so the host knows what happend.
                                      */
-                                    rc = VBoxServiceWritePropF(g_uExecGuestPropSvcClientID,
-                                                               "/VirtualBox/HostGuest/SysprepRet",
-                                                               "%d", Status.iStatus);
-                                    if (RT_FAILURE(rc))
-                                        VBoxServiceError("Exec: Failed to write SysprepRet: rc=%Rrc\n", rc);
+                                    VBoxServiceWritePropF(g_uExecGuestPropSvcClientID,
+                                                          "/VirtualBox/HostGuest/SysprepRet",
+                                                          "%d", Status.iStatus);
                                 }
                                 else
@@ -443,9 +443,5 @@
              */
             if (rc != VERR_NOT_FOUND)
-            {
-                rc = VBoxServiceWritePropF(g_uExecGuestPropSvcClientID, "/VirtualBox/HostGuest/SysprepVBoxRC", "%d", rc);
-                if (RT_FAILURE(rc))
-                    VBoxServiceError("Exec: Failed to write SysprepVBoxRC: rc=%Rrc\n", rc);
-            }
+                VBoxServiceWritePropF(g_uExecGuestPropSvcClientID, "/VirtualBox/HostGuest/SysprepVBoxRC", "%d", rc);
         }
 
