1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-28 22:23:17 +00:00

Fixed compiler warning

This commit is contained in:
Bryan Roe
2020-12-18 10:52:33 -08:00
parent 5c1b44e749
commit d435c9acb8

View File

@@ -1883,13 +1883,12 @@ char* MeshAgent_MakeAbsolutePathEx(char *basePath, char *localPath, int escapeBa
size_t basePathLen = strnlen_s(basePath, sizeof(ILibScratchPad2) - 4);
size_t localPathLen = strnlen_s(localPath, sizeof(ILibScratchPad2) - 4);
size_t len;
char *wd;
if (agent != NULL && agent->configPathUsesCWD != 0)
{
#ifdef WIN32
int i = ILibString_LastIndexOf(basePath, basePathLen, "\\", 1) + 1;
wd = ILibWideToUTF8((LPWSTR)ILibScratchPad2, GetCurrentDirectoryW(sizeof(ILibScratchPad2) / 2, (LPWSTR)ILibScratchPad2));
char *wd = ILibWideToUTF8((LPWSTR)ILibScratchPad2, GetCurrentDirectoryW(sizeof(ILibScratchPad2) / 2, (LPWSTR)ILibScratchPad2));
sprintf_s(ILibScratchPad2, sizeof(ILibScratchPad2), "%s\\%s", wd, basePath + i);
#else
int i = ILibString_LastIndexOf(basePath, basePathLen, "/", 1) + 1;