Handle case where a directory contains a '." but the

filename doesn't (i.e. has no extension)

svn path=/trunk/; revision=15321
This commit is contained in:
Gé van Geldorp 2005-05-15 21:28:44 +00:00
parent 52b95ec424
commit 83deefac8c

View file

@ -44,8 +44,9 @@ void _tsplitpath(const _TCHAR* path, _TCHAR* drive, _TCHAR* dir, _TCHAR* fname,
}
}
tmp_ext = (_TCHAR*)_tcsrchr(path,'.');
if (!tmp_ext)
/* If the dot is before the last dir separator, it's part
* of a directory name, not the start of the extension */
if (!tmp_ext || tmp_ext < tmp_dir)
{
tmp_ext = (_TCHAR*)path+_tcslen(path);
}