Update file_link.c

This commit is contained in:
DavidXanatos 2024-04-28 16:38:38 +02:00
parent 4a8650ca9d
commit 846a3ea29e
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ _FX WCHAR* File_TranslateGuidToNtPath2(const WCHAR* GuidPath, ULONG GuidPathLen)
FILE_GUID* guid = File_GetLinkForGuid(&GuidPath[10]);
if (guid) {
File_ConcatPath2(guid->path + 48, guid->len - 48, GuidPath, GuidPathLen);
File_ConcatPath2(guid->path, guid->len, GuidPath + 48, GuidPathLen - 48);
LeaveCriticalSection(File_DrivesAndLinks_CritSec);
}