userlibandfileserver/fileserver/inc/f32file.inl
changeset 271 dc268b18d709
parent 0 a41df078684a
child 279 957c583b417b
--- a/userlibandfileserver/fileserver/inc/f32file.inl	Mon Sep 13 15:16:07 2010 +0100
+++ b/userlibandfileserver/fileserver/inc/f32file.inl	Wed Sep 22 10:53:45 2010 +0100
@@ -221,7 +221,7 @@
     Calculates the file system name hash. For use in conjunction with this class only
     The file system name hash is a standard CRC32 on the up-cased name.
     
-    @param  aFsName given name.
+    @param  aFsName given name. Its length should not exceed KMaxFSNameLength
     @return CRC32 name hash value
 
 */    
@@ -231,7 +231,7 @@
         
     if(aFsName.Length() > 0)
         {
-        TFullName fsName;
+        TFSName fsName;
         fsName.Copy(aFsName);
         fsName.UpperCase();
         Mem::Crc32(nameHash, fsName.Ptr(), fsName.Length());
@@ -281,9 +281,19 @@
     return iData[aIndex];
     }
 
+//-------------------------------------------------------------------------------------------------------------------
+
+CFsMountHelper::~CFsMountHelper() 
+    {
+    Close();
+    } 
+
+
+CFsMountHelper::CFsMountHelper() 
+    {}; 
+
+//-------------------------------------------------------------------------------------------------------------------
 
 
 
 
-
-