mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 08:59:58 +00:00
Prevent null pointer dereference here too
This commit is contained in:
parent
02ee7df743
commit
d0d6d0bfe8
@ -153,7 +153,8 @@ void cb_net_generic(void *task_data, void *user_data, const char *err)
|
||||
if (!core_buf)
|
||||
goto finish;
|
||||
|
||||
memcpy(core_buf, data->data, data->len * sizeof(char));
|
||||
if (!string_is_empty(data->data))
|
||||
memcpy(core_buf, data->data, data->len * sizeof(char));
|
||||
core_buf[data->len] = '\0';
|
||||
core_len = data->len;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user