diff options
author | Benoît Ganne <bganne@cisco.com> | 2023-01-26 17:04:58 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-01-27 16:37:15 +0000 |
commit | 8a1d07922b20f0c960af4b99c642aec08ae1b9c4 (patch) | |
tree | 7a1dca41a637e75852b684f51ef6be5f257c2de3 /src/vlibmemory/socket_client.h | |
parent | 49bbf9e98aacfe6f807ab54cb9aebda53e80dce8 (diff) |
api: keep AddressSanitizer happy
socket_tx_buffer is a vector, update its length accordingly so that
AddressSanitizer can keep track of the allowed memory area.
By doing so we can get rid of socket_tx_nbytes which becomes redundant
with the vector length.
Type: fix
Change-Id: Ied7cb430b5dd40d5ed1390aa15bd5f455a0dba62
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src/vlibmemory/socket_client.h')
-rw-r--r-- | src/vlibmemory/socket_client.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vlibmemory/socket_client.h b/src/vlibmemory/socket_client.h index 619b7f4fccc..a4b8bc7d6be 100644 --- a/src/vlibmemory/socket_client.h +++ b/src/vlibmemory/socket_client.h @@ -34,7 +34,6 @@ typedef struct u32 socket_buffer_size; u8 *socket_tx_buffer; u8 *socket_rx_buffer; - u32 socket_tx_nbytes; int control_pings_outstanding; u8 *name; |