diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2022-01-10 15:32:35 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2022-01-11 11:32:34 +0000 |
commit | 3b7ef512f190a506f62af53536b586b4800f66c1 (patch) | |
tree | bd6af34a0aa011d7704e9c3ffeb8de27ac1ed72d /src/vnet/gre/interface.c | |
parent | 6ac74e44e545b7003b3a7da62b35b6adffb6ccdc (diff) |
misc: fix the uninitialization error
Type: fix
| src/vppinfra/vector/toeplitz.c:69:9: error: ‘kv’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
| src/vppinfra/memcpy_x86_64.h:45:17: error: ‘*((void *)&key+16)’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
| *(u8x16u *) d = *(u8x16u *) s;
| ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
| src/vnet/gre/interface.c:356:20: note: ‘*((void *)&key+16)’ was declared here
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Change-Id: I71614da2821ebda5200a0cb9437a7aad0c42fbb2
Diffstat (limited to 'src/vnet/gre/interface.c')
-rw-r--r-- | src/vnet/gre/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/gre/interface.c b/src/vnet/gre/interface.c index 4a02aa77292..bc78c605068 100644 --- a/src/vnet/gre/interface.c +++ b/src/vnet/gre/interface.c @@ -353,7 +353,7 @@ static walk_rc_t gre_tunnel_add_teib_walk (index_t nei, void *ctx) { gre_tunnel_t *t = ctx; - gre_tunnel_key_t key; + gre_tunnel_key_t key = {}; gre_teib_mk_key (t, teib_entry_get (nei), &key); gre_tunnel_db_add (t, &key); |