1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2026-01-04 01:23:21 +00:00

Removed unreferenced variable

This commit is contained in:
Bryan Roe
2021-01-11 13:57:17 -08:00
parent 12230f8ce7
commit 68e720d4a7

View File

@@ -1994,7 +1994,6 @@ char* MeshAgent_MakeAbsolutePathEx(char *basePath, char *localPath, int escapeBa
if (escapeBackSlash != 0)
{
char *tmp = ILibString_Replace(ILibScratchPad2, strnlen_s(ILibScratchPad2, sizeof(ILibScratchPad2)), "\\", 1, "\\\\", 2);
size_t tmplen = strnlen_s(tmp, sizeof(ILibScratchPad2));
strcpy_s(ILibScratchPad2, sizeof(ILibScratchPad2), tmp);
free(tmp);
}