mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-17 03:28:57 +00:00
Fix SDL_EnumerateDirectory(/) failing on POSIX and Windows.
(cherry picked from commit 09a2283b53)
This commit is contained in:
parent
e8fbb7e820
commit
99cbedd662
2 changed files with 2 additions and 2 deletions
|
|
@ -45,7 +45,7 @@ bool SDL_SYS_EnumerateDirectory(const char *path, SDL_EnumerateDirectoryCallback
|
|||
|
||||
// trim down to a single path separator at the end, in case the caller added one or more.
|
||||
pathwithseplen--;
|
||||
while ((pathwithseplen >= 0) && (pathwithsep[pathwithseplen] == '/')) {
|
||||
while ((pathwithseplen > 0) && (pathwithsep[pathwithseplen] == '/')) {
|
||||
pathwithsep[pathwithseplen--] = '\0';
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ bool SDL_SYS_EnumerateDirectory(const char *path, SDL_EnumerateDirectoryCallback
|
|||
|
||||
// trim down to a single path separator at the end, in case the caller added one or more.
|
||||
patternlen--;
|
||||
while ((patternlen >= 0) && ((pattern[patternlen] == '\\') || (pattern[patternlen] == '/'))) {
|
||||
while ((patternlen > 0) && ((pattern[patternlen] == '\\') || (pattern[patternlen] == '/'))) {
|
||||
pattern[patternlen--] ='\0';
|
||||
}
|
||||
pattern[++patternlen] = '\\';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue