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)
|
if (!core_buf)
|
||||||
goto finish;
|
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_buf[data->len] = '\0';
|
||||||
core_len = data->len;
|
core_len = data->len;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue