mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +00:00
Try to see if this gets us past the crash
This commit is contained in:
parent
d3f4be0bbc
commit
cd0b925fa1
@ -394,10 +394,13 @@ bool rarch_task_push_image_load(const char *fullpath,
|
|||||||
error:
|
error:
|
||||||
if (t)
|
if (t)
|
||||||
free(t);
|
free(t);
|
||||||
|
if (nbio)
|
||||||
|
{
|
||||||
if (nbio->image)
|
if (nbio->image)
|
||||||
free(nbio->image);
|
free(nbio->image);
|
||||||
if (nbio)
|
|
||||||
free(nbio);
|
free(nbio);
|
||||||
|
}
|
||||||
|
|
||||||
RARCH_ERR("[image load] Failed to open '%s': %s.\n",
|
RARCH_ERR("[image load] Failed to open '%s': %s.\n",
|
||||||
fullpath, strerror(errno));
|
fullpath, strerror(errno));
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user