mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Avoid reading too much data in xs_data_new
This commit is contained in:
parent
74817a4552
commit
632bbe475c
1 changed files with 3 additions and 3 deletions
6
xs.h
6
xs.h
|
@ -1057,12 +1057,12 @@ xs_data *xs_data_new(const void *data, int size)
|
||||||
xs_data *v;
|
xs_data *v;
|
||||||
|
|
||||||
/* add the overhead (data type + 24bit size) */
|
/* add the overhead (data type + 24bit size) */
|
||||||
size += 4;
|
int total_size = size + 4;
|
||||||
|
|
||||||
v = xs_realloc(NULL, _xs_blk_size(size));
|
v = xs_realloc(NULL, _xs_blk_size(total_size));
|
||||||
v[0] = XSTYPE_DATA;
|
v[0] = XSTYPE_DATA;
|
||||||
|
|
||||||
_xs_put_24b(v + 1, size);
|
_xs_put_24b(v + 1, total_size);
|
||||||
|
|
||||||
memcpy(&v[4], data, size);
|
memcpy(&v[4], data, size);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue