Fix issue with case sensitive files

Fix #14724, close #14971
This commit is contained in:
Davi Feliciano Nonnenmacher 2024-04-10 20:40:39 -03:00 committed by Don Ho
parent 3c06d89b2a
commit 2531b4d12c
2 changed files with 2 additions and 2 deletions

View File

@ -1795,7 +1795,7 @@ BufferID FileManager::getBufferFromName(const TCHAR* name)
{
for (auto buf : _buffers)
{
if (OrdinalIgnoreCaseCompareStrings(name, buf->getFullPathName()) == 0)
if (wcscmp(name, buf->getFullPathName()) == 0)
{
if (!(buf->_referees.empty()) && buf->_referees[0]->isVisible())
{

View File

@ -95,7 +95,7 @@ BufferID DocTabView::findBufferByName(const TCHAR * fullfilename) //-1 if not fo
::SendMessage(_hSelf, TCM_GETITEM, i, reinterpret_cast<LPARAM>(&tie));
BufferID id = reinterpret_cast<BufferID>(tie.lParam);
Buffer * buf = MainFileManager.getBufferByID(id);
if (OrdinalIgnoreCaseCompareStrings(fullfilename, buf->getFullPathName()) == 0)
if (wcscmp(fullfilename, buf->getFullPathName()) == 0)
{
return id;
}