Merge commit 'f74694048575160067734cbe27a023ad78a2c727' into 1.10

This commit is contained in:
Wojtek Figat
2024-10-03 10:23:07 +02:00
14 changed files with 149 additions and 81 deletions

View File

@@ -227,7 +227,7 @@ bool DeleteUnixPathTree(const char* path)
// Determinate a full path of an entry
char full_path[256];
ASSERT(pathLength + strlen(entry->d_name) < ARRAY_COUNT(full_path));
strcpy(full_path, path);
strcpy(full_path, pathStr);
strcat(full_path, "/");
strcat(full_path, entry->d_name);