Index: /trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxSharedFolders.cpp
===================================================================
--- /trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxSharedFolders.cpp	(revision 31026)
+++ /trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxSharedFolders.cpp	(revision 31027)
@@ -35,8 +35,8 @@
         VBGLR3SHAREDFOLDERMAPPING *paMappings = (PVBGLR3SHAREDFOLDERMAPPING)RTMemAlloc(cbMappings);
 
-        if (pMappings)
+        if (paMappings)
         {
             rc = VbglR3SharedFolderGetMappings(u32ClientId, true /* Only process auto-mounted folders */,
-                                               pMappings, cbMappings,
+                                               paMappings, cbMappings,
                                                &cMappings);
             if (RT_SUCCESS(rc))
@@ -46,5 +46,5 @@
                 {
                     char *pszName = NULL;
-                    rc = VbglR3SharedFolderGetName(u32ClientId, pMappings[i].u32Root, &pszName);
+                    rc = VbglR3SharedFolderGetName(u32ClientId, paMappings[i].u32Root, &pszName);
                     if (   RT_SUCCESS(rc)
                         && *pszName)
@@ -85,10 +85,10 @@
                     else
                         Log(("VBoxTray: Error while getting the shared folder name for root node = %u, rc = %Rrc\n",
-                             pMappings[i].u32Root, rc));
+                             paMappings[i].u32Root, rc));
                 }
             }
             else
                 Log(("VBoxTray: Error while getting the shared folder mappings, rc = %Rrc\n", rc));
-            RTMemFree(pMappings);
+            RTMemFree(paMappings);
         }
         else
