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,6 +153,7 @@ void cb_net_generic(void *task_data, void *user_data, const char *err)
if (!core_buf) if (!core_buf)
goto finish; goto finish;
if (!string_is_empty(data->data))
memcpy(core_buf, data->data, data->len * sizeof(char)); memcpy(core_buf, data->data, data->len * sizeof(char));
core_buf[data->len] = '\0'; core_buf[data->len] = '\0';
core_len = data->len; core_len = data->len;