Index: /trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp	(revision 29513)
+++ /trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp	(revision 29514)
@@ -289,4 +289,5 @@
     HANDLE hSnapshot;
     PAVLPVNODECORE pNewTree = NULL;
+    DWORD dwProcessId = GetCurrentProcessId();
 
     VBoxServiceVerbose(3, "VBoxServicePageSharingInspectGuest\n");
@@ -307,5 +308,7 @@
     do
     {
-        VBoxServicePageSharingInspectModules(ProcessInfo.th32ProcessID, &pNewTree);
+        /* Skip our own process. */
+        if (ProcessInfo.th32ProcessID != dwProcessId)
+            VBoxServicePageSharingInspectModules(ProcessInfo.th32ProcessID, &pNewTree);
     }
     while (Process32Next(hSnapshot, &ProcessInfo));
