Remove dot at the end of filename without extension

svn path=/trunk/; revision=20071
This commit is contained in:
Sebastian Gasiorek 2005-12-11 18:29:27 +00:00
parent 3785710133
commit 5b288afe1a

View file

@ -50,6 +50,11 @@ CdfsSwapString(PWCHAR Out,
if (t[i+1] == 0 && t[i] == ';')
break;
}
if ((i>2)&&(t[i-2] == '.'))
{
t[i-2] = 0;
t[i-1] = 0;
}
t[i] = 0;
t[i+1] = 0;
}