diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2021-06-17 12:31:11 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2021-06-18 09:40:20 +0200 |
commit | 23939b625bb7f0e5d9743f3dd286d73216b7f7e1 (patch) | |
tree | 4ed4c0acb0ed176a632c1fe75dcdee6661df3665 /tests/py | |
parent | e2c0529c7fe40be9f3f3c0131d26f44fe8fdc408 (diff) |
segtree: memleak in error path of the set to segtree conversion
Release the array of intervals and the segtree in case of error,
otherwise these structures and objects are never released:
SUMMARY: AddressSanitizer: 2864 byte(s) leaked in 37 allocation(s).
Moreover, improve existing a test coverage of this error path.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests/py')
-rw-r--r-- | tests/py/inet/ip.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/py/inet/ip.t b/tests/py/inet/ip.t index 86604a63..ac5b825e 100644 --- a/tests/py/inet/ip.t +++ b/tests/py/inet/ip.t @@ -8,4 +8,4 @@ ip saddr . ip daddr . ether saddr { 1.1.1.1 . 2.2.2.2 . ca:fe:ca:fe:ca:fe };ok ip saddr vmap { 10.0.1.0-10.0.1.255 : accept, 10.0.1.1-10.0.2.255 : drop };fail -ip saddr vmap { 1.1.1.1-1.1.1.255 : accept, 1.1.1.0-1.1.2.1 : drop};fail +ip saddr vmap { 3.3.3.3-3.3.3.4 : accept, 1.1.1.1-1.1.1.255 : accept, 1.1.1.0-1.1.2.1 : drop};fail |