Index: /trunk/src/VBox/Additions/x11/Installer/98vboxadd-xclient
===================================================================
--- /trunk/src/VBox/Additions/x11/Installer/98vboxadd-xclient	(revision 50713)
+++ /trunk/src/VBox/Additions/x11/Installer/98vboxadd-xclient	(revision 50714)
@@ -16,11 +16,8 @@
 #
 
-# It can happen that pidfiles from a sudo session can land in the user's
-# home directory and prevent new ones from being created.  This is not really
-# our fault, but the user may not quite appreciate that...
+# Sanity check: if non-writeable PID-files are present in the user home
+# directory VBoxClient will fail to start.
 for i in $HOME/.vboxclient-*.pid; do
-  if test -r $i && ! ps -e | grep `cat $i`; then
-    rm -f $i
-  fi
+    test -w $i || rm -f $i
 done
 
