mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
Silence threading error
This commit is contained in:
parent
2777ee2fa4
commit
af469698da
@ -126,9 +126,12 @@ void retro_main_log_file_init(const char *path)
|
||||
void retro_main_log_file_deinit(void)
|
||||
{
|
||||
if (log_file_fp && log_file_fp != stderr)
|
||||
{
|
||||
fclose(log_file_fp);
|
||||
if (log_file_buf) free(log_file_buf);
|
||||
log_file_fp = NULL;
|
||||
log_file_fp = NULL;
|
||||
}
|
||||
if (log_file_buf)
|
||||
free(log_file_buf);
|
||||
log_file_buf = NULL;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user