mirror of
https://github.com/libretro/RetroArch
synced 2025-04-18 14:42:30 +00:00
dir_list_new - don't do implicit memset
This commit is contained in:
parent
f6991c95a4
commit
920ee70fbd
@ -229,7 +229,7 @@ struct string_list *dir_list_new(const char *dir,
|
|||||||
DIR *directory = NULL;
|
DIR *directory = NULL;
|
||||||
const struct dirent *entry = NULL;
|
const struct dirent *entry = NULL;
|
||||||
#endif
|
#endif
|
||||||
char path_buf[PATH_MAX_LENGTH] = {0};
|
char path_buf[PATH_MAX_LENGTH];
|
||||||
struct string_list *ext_list = NULL;
|
struct string_list *ext_list = NULL;
|
||||||
struct string_list *list = NULL;
|
struct string_list *list = NULL;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user