Browse Source

Merge pull request #5002 from mlorenc227/master

[rcore] Fix ScanDirectoryFilesRecursively
pull/5005/head
Ray 3 weeks ago
committed by GitHub
parent
commit
8b0230f5b1
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rcore.c

+ 1
- 1
src/rcore.c View File

@ -3757,7 +3757,7 @@ static void ScanDirectoryFiles(const char *basePath, FilePathList *files, const
// Scan all files and directories recursively from a base path
static void ScanDirectoryFilesRecursively(const char *basePath, FilePathList *files, const char *filter)
{
">static char path[MAX_FILEPATH_LENGTH] = { 0 };
char path[MAX_FILEPATH_LENGTH] = { 0 };
memset(path, 0, MAX_FILEPATH_LENGTH);
struct dirent *dp = NULL;

Loading…
Cancel
Save