mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
content_file_init_extract - cleanup
This commit is contained in:
parent
559669fc4a
commit
6c5d08d893
@ -525,14 +525,15 @@ static bool content_file_init_extract(
|
||||
|
||||
free(temp_content);
|
||||
|
||||
if (!string_list_append(content_ctx->temporary_content,
|
||||
new_path, *attr))
|
||||
{
|
||||
free(new_path);
|
||||
return false;
|
||||
}
|
||||
bool append_success = string_list_append(content_ctx->temporary_content,
|
||||
new_path, *attr);
|
||||
|
||||
free(new_path);
|
||||
free(new_path);
|
||||
|
||||
if (!append_success)
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user