mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +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;
|
||||
const struct dirent *entry = NULL;
|
||||
#endif
|
||||
char path_buf[PATH_MAX_LENGTH] = {0};
|
||||
char path_buf[PATH_MAX_LENGTH];
|
||||
struct string_list *ext_list = NULL;
|
||||
struct string_list *list = NULL;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user