Prevent null pointer dereference here too

This commit is contained in:
twinaphex 2017-10-03 04:26:34 +02:00
parent 02ee7df743
commit d0d6d0bfe8

View File

@ -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;