Index: /trunk/src/VBox/Main/SharedFolderImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/SharedFolderImpl.cpp	(revision 15977)
+++ /trunk/src/VBox/Main/SharedFolderImpl.cpp	(revision 15978)
@@ -104,6 +104,6 @@
     unconst (mMachine) = aMachine;
 
-    HRESULT rc = protectedInit (aMachine, aThat->m.name,
-                                aThat->m.hostPath, aThat->m.writable);
+    HRESULT rc = protectedInit (aMachine, aThat->mData.mName,
+                                aThat->mData.mHostPath, aThat->mData.mWritable);
 
     /* Confirm a successful initialization when it's the case */
@@ -222,7 +222,7 @@
     mParent->addDependentChild (this);
 
-    unconst (m.name) = aName;
-    unconst (m.hostPath) = hostPath;
-    m.writable = aWritable;
+    unconst (mData.mName) = aName;
+    unconst (mData.mHostPath) = hostPath;
+    mData.mWritable = aWritable;
 
     return S_OK;
@@ -263,5 +263,5 @@
 
     /* mName is constant during life time, no need to lock */
-    m.name.cloneTo (aName);
+    mData.mName.cloneTo (aName);
 
     return S_OK;
@@ -276,5 +276,5 @@
 
     /* mHostPath is constant during life time, no need to lock */
-    m.hostPath.cloneTo (aHostPath);
+    mData.mHostPath.cloneTo (aHostPath);
 
     return S_OK;
@@ -283,5 +283,5 @@
 STDMETHODIMP SharedFolder::COMGETTER(Accessible) (BOOL *aAccessible)
 {
-    CheckComArgOutPointerValid (aAccessible);
+    CheckComArgOutPointerValid(aAccessible);
 
     AutoCaller autoCaller (this);
@@ -291,5 +291,5 @@
 
     /* check whether the host path exists */
-    Utf8Str hostPath = Utf8Str (m.hostPath);
+    Utf8Str hostPath = Utf8Str (mData.mHostPath);
     char hostPathFull [RTPATH_MAX];
     int vrc = RTPathExists (hostPath) ? RTPathReal (hostPath, hostPathFull,
@@ -302,10 +302,5 @@
     }
 
-    AutoWriteLock alock (this);
-
-    m.lastAccessError = BstrFmt (
-        tr ("'%s' is not accessible (%Rrc)"), hostPath.raw(), vrc);
-
-    LogWarningThisFunc (("m.lastAccessError=\"%ls\"\n", m.lastAccessError.raw()));
+    LogWarningThisFunc (("'%s' is not accessible (%Rrc)\n", hostPath.raw(), vrc));
 
     *aAccessible = FALSE;
@@ -317,22 +312,7 @@
     CheckComArgOutPointerValid(aWritable);
 
-    *aWritable = m.writable;
-
-    return S_OK;
-}
-
-STDMETHODIMP SharedFolder::COMGETTER(LastAccessError) (BSTR *aLastAccessError)
-{
-    CheckComArgOutPointerValid (aLastAccessError);
-
-    AutoCaller autoCaller (this);
-    CheckComRCReturnRC (autoCaller.rc());
-
-    AutoReadLock alock (this);
-
-    m.lastAccessError.cloneTo (aLastAccessError);
-
-    return S_OK;
-}
-
+    *aWritable = mData.mWritable;
+
+    return S_OK;
+}
 /* vi: set tabstop=4 shiftwidth=4 expandtab: */
Index: /trunk/src/VBox/Main/idl/VirtualBox.xidl
===================================================================
--- /trunk/src/VBox/Main/idl/VirtualBox.xidl	(revision 15977)
+++ /trunk/src/VBox/Main/idl/VirtualBox.xidl	(revision 15978)
@@ -11046,5 +11046,5 @@
   <interface
      name="ISharedFolder" extends="$unknown"
-     uuid="ef41869b-ef31-4b30-8e8f-95af35c0e378"
+     uuid="8b0c5f70-9139-4f97-a421-64d5e9c335d5"
      wsmap="struct"
      >
@@ -11121,17 +11121,4 @@
         Whether the folder defined by the host path is writable or
         not.
-      </desc>
-    </attribute>
-
-    <attribute name="lastAccessError" type="wstring" readonly="yes">
-      <desc>
-        Text message that represents the result of the last accessibility
-        check.
-
-        Accessibility checks are performed each time the <link to="#accessible"/>
-        attribute is read. A @c null string is returned if the last
-        accessibility check was successful. A non-null string indicates a
-        failure and should normally describe a reason of the failure (for
-        example, a file read error).
       </desc>
     </attribute>
Index: /trunk/src/VBox/Main/include/SharedFolderImpl.h
===================================================================
--- /trunk/src/VBox/Main/include/SharedFolderImpl.h	(revision 15977)
+++ /trunk/src/VBox/Main/include/SharedFolderImpl.h	(revision 15978)
@@ -43,8 +43,7 @@
         Data() {}
 
-        const Bstr name;
-        const Bstr hostPath;
-        BOOL       writable;
-        Bstr       lastAccessError;
+        const Bstr mName;
+        const Bstr mHostPath;
+        BOOL       mWritable;
     };
 
@@ -79,5 +78,4 @@
     STDMETHOD(COMGETTER(Accessible)) (BOOL *aAccessible);
     STDMETHOD(COMGETTER(Writable)) (BOOL *aWritable);
-    STDMETHOD(COMGETTER(LastAccessError)) (BSTR *aLastAccessError);
 
     // public methods for internal purposes only
@@ -87,7 +85,7 @@
     // (ensure there is a caller added before calling them!)
 
-    const Bstr &name() const { return m.name; }
-    const Bstr &hostPath() const { return m.hostPath; }
-    BOOL writable() const { return m.writable; }
+    const Bstr &name() const { return mData.mName; }
+    const Bstr &hostPath() const { return mData.mHostPath; }
+    BOOL writable() const { return mData.mWritable; }
 
     // for VirtualBoxSupportErrorInfoImpl
@@ -108,5 +106,5 @@
     const ComObjPtr <VirtualBox, ComWeakRef> mVirtualBox;
 
-    Data m;
+    Data mData;
 };
 
