1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-04 13:20:15 +00:00

Use malloc instead of calloc

This commit is contained in:
twinaphex 2017-08-13 06:05:35 +02:00
parent 1666827ad4
commit a0cbb1ee43

@ -177,7 +177,9 @@ finish:
state->path, sizeof(parent_dir)); state->path, sizeof(parent_dir));
strlcat(parent_dir, file_path_str(FILE_PATH_INDEX_DIRS_URL), sizeof(parent_dir)); strlcat(parent_dir, file_path_str(FILE_PATH_INDEX_DIRS_URL), sizeof(parent_dir));
transf = (menu_file_transfer_t*)calloc(1, sizeof(*transf)); transf = (menu_file_transfer_t*)malloc(sizeof(*transf));
transf->enum_idx = MSG_UNKNOWN;
strlcpy(transf->path, parent_dir, sizeof(transf->path)); strlcpy(transf->path, parent_dir, sizeof(transf->path));
task_push_http_transfer(parent_dir, true, "index_dirs", cb_net_generic_subdir, transf); task_push_http_transfer(parent_dir, true, "index_dirs", cb_net_generic_subdir, transf);