DOSFS_DoGetFullPathName: terminate string weh called like .\\file

diff --git a/files/dos_fs.c b/files/dos_fs.c
index 3ca9cd0..3d45991 100644
--- a/files/dos_fs.c
+++ b/files/dos_fs.c
@@ -1177,7 +1177,7 @@
     while ((p = strstr(full_name.short_name,"\\.\\")))
       {
 	*(p+1) = 0;
-	memmove(p+1,p+3,strlen(p+3));
+	memmove(p+1,p+3,strlen(p+3)+1);
       }
     if (!(DRIVE_GetFlags(drive) & DRIVE_CASE_PRESERVING))
       CharUpperA( full_name.short_name );