diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-10-30 01:16:28 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-11-02 21:13:44 +0100 |
commit | 721c08573ab0427622e3073b7462196bc36a2894 (patch) | |
tree | 6e9fc167929ee822d31d5e9359aa5dd5fe8e2605 /ripngd | |
parent | *: Convert prefix_free to double pointer (diff) | |
download | frr-721c08573ab0427622e3073b7462196bc36a2894.tar.xz frr-721c08573ab0427622e3073b7462196bc36a2894.zip |
*: Convert connected_free to a double pointer
Set the connected pointer to set the pointer to NULL.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ripngd')
-rw-r--r-- | ripngd/ripng_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripngd/ripng_interface.c b/ripngd/ripng_interface.c index 9209a7646..97113a180 100644 --- a/ripngd/ripng_interface.c +++ b/ripngd/ripng_interface.c @@ -430,7 +430,7 @@ int ripng_interface_address_delete(ZAPI_CALLBACK_ARGS) /* Check wether this prefix needs to be removed. */ ripng_apply_address_del(ifc); } - connected_free(ifc); + connected_free(&ifc); } return 0; |