From 9fbacbc56b9f075e9f5fc3f5df1c18043145562c Mon Sep 17 00:00:00 2001 From: Filip Varga Date: Mon, 3 Feb 2020 12:14:29 +0100 Subject: [PATCH] nat: pool allocation function fix Type: fix Change-Id: I75b20db66fb58e1724a212253c51315836079f4b Signed-off-by: Filip Varga --- src/plugins/nat/lib/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/nat/lib/alloc.c b/src/plugins/nat/lib/alloc.c index 2c9841b7b63..33c2c071d62 100644 --- a/src/plugins/nat/lib/alloc.c +++ b/src/plugins/nat/lib/alloc.c @@ -36,7 +36,7 @@ nat_add_del_ip4_pool_addr (nat_ip4_pool_t * pool, ip4_address_t addr, vlib_thread_main_t *tm = vlib_get_thread_main (); // lookup for the address - for (i = 0; i < vec_len (pool); i++) + for (i = 0; i < vec_len (pool->pool_addr); i++) { if (pool->pool_addr[i].addr.as_u32 == addr.as_u32) { -- 2.16.6