Index: /trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp	(revision 33926)
+++ /trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp	(revision 33927)
@@ -1424,10 +1424,10 @@
         {
             char strTemp[RTPATH_MAX];
-            rc = RTPathAppPrivateNoArch(strTemp, sizeof(strTemp));
-            AssertRC(rc);
+            vrc = RTPathAppPrivateNoArch(strTemp, sizeof(strTemp));
+            AssertRC(vrc);
             Utf8Str Utf8Src1 = Utf8Str(strTemp).append("/VBoxGuestAdditions.iso");
 
-            rc = RTPathExecDir(strTemp, sizeof(strTemp));
-            AssertRC(rc);
+            vrc = RTPathExecDir(strTemp, sizeof(strTemp));
+            AssertRC(vrc);
             Utf8Str Utf8Src2 = Utf8Str(strTemp).append("/additions/VBoxGuestAdditions.iso");
 
@@ -1440,5 +1440,5 @@
             {
                 RTMsgError("Source could not be determined! Please use --source to specify a valid source.\n");
-                rc = VERR_FILE_NOT_FOUND;
+                vrc = VERR_FILE_NOT_FOUND;
             }
         }
@@ -1446,8 +1446,8 @@
         {
             RTMsgError("Source \"%s\" does not exist!\n", Utf8Source.c_str());
-            rc = VERR_FILE_NOT_FOUND;
-        }
-
-        if (RT_SUCCESS(rc))
+            vrc = VERR_FILE_NOT_FOUND;
+        }
+
+        if (RT_SUCCESS(vrc))
         {
             if (fVerbose)
