mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-26 12:47:37 +00:00
compressed_7zip_file_list_new - fix potential memleak
This commit is contained in:
parent
7aab9baaa8
commit
a6028daea3
10
file_ops.c
10
file_ops.c
@ -120,11 +120,9 @@ static int read_7zip_file(
|
|||||||
RARCH_ERR("Could not open %s as 7z archive\n.",archive_path);
|
RARCH_ERR("Could not open %s as 7z archive\n.",archive_path);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
RARCH_LOG_OUTPUT("Opened archive %s. Now trying to extract %s\n",
|
||||||
RARCH_LOG_OUTPUT("Opened archive %s. Now trying to extract %s\n",
|
archive_path,relative_path);
|
||||||
archive_path,relative_path);
|
|
||||||
}
|
|
||||||
|
|
||||||
FileInStream_CreateVTable(&archiveStream);
|
FileInStream_CreateVTable(&archiveStream);
|
||||||
LookToRead_CreateVTable(&lookStream, False);
|
LookToRead_CreateVTable(&lookStream, False);
|
||||||
@ -274,6 +272,8 @@ static struct string_list *compressed_7zip_file_list_new(
|
|||||||
{
|
{
|
||||||
RARCH_ERR("Could not open %s as 7z archive.\n",path);
|
RARCH_ERR("Could not open %s as 7z archive.\n",path);
|
||||||
|
|
||||||
|
if (ext_list)
|
||||||
|
string_list_free(ext_list);
|
||||||
string_list_free(list);
|
string_list_free(list);
|
||||||
list = NULL;
|
list = NULL;
|
||||||
goto end;
|
goto end;
|
||||||
|
Loading…
Reference in New Issue
Block a user