mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Use tor_malloc_zero() in var_cell_new().
This is just a precaution; we seem to be using var_cell_t.payload and var_cell_t.payload_len correctly at the moment.
This commit is contained in:
parent
c77d1b7bda
commit
8284c2bcba
@ -327,7 +327,7 @@ var_cell_t *
|
||||
var_cell_new(uint16_t payload_len)
|
||||
{
|
||||
size_t size = STRUCT_OFFSET(var_cell_t, payload) + payload_len;
|
||||
var_cell_t *cell = tor_malloc(size);
|
||||
var_cell_t *cell = tor_malloc_zero(size);
|
||||
cell->payload_len = payload_len;
|
||||
cell->command = 0;
|
||||
cell->circ_id = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user