mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 01:21:10 +00:00
Fix ugly possible segfault.
This commit is contained in:
parent
202a458524
commit
a48dc55c41
2
file.c
2
file.c
@ -510,7 +510,7 @@ void load_ram_file(const char *path, int type)
|
||||
void *buf = NULL;
|
||||
ssize_t rc = read_file(path, &buf);
|
||||
if (rc <= size)
|
||||
memcpy(data, buf, size);
|
||||
memcpy(data, buf, rc);
|
||||
|
||||
free(buf);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user