diff mbox series

[iproute2] mptcp: unbreak JSON endpoint list

Message ID b526544bc745535f72c76752bbd850df5a0ac2e4.1633004460.git.dcaratti@redhat.com (mailing list archive)
State Mainlined, archived
Delegated to: Paolo Abeni
Headers show
Series [iproute2] mptcp: unbreak JSON endpoint list | expand

Commit Message

Davide Caratti Sept. 30, 2021, 3:19 p.m. UTC
the following command:

 # ip -j mptcp endpoint show

prints a JSON array that misses the terminating bracket. Fix this calling
delete_json_obj() to balance the call to new_json_obj().

Fixes: 7e0767cd862b ("add support for mptcp netlink interface")
Signed-off-by: Davide Caratti <dcaratti@redhat.com>
---
 ip/ipmptcp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Andrea Claudi Oct. 1, 2021, 9:35 a.m. UTC | #1
On Thu, Sep 30, 2021 at 05:19:25PM +0200, Davide Caratti wrote:
> the following command:
> 
>  # ip -j mptcp endpoint show
> 
> prints a JSON array that misses the terminating bracket. Fix this calling
> delete_json_obj() to balance the call to new_json_obj().
> 
> Fixes: 7e0767cd862b ("add support for mptcp netlink interface")
> Signed-off-by: Davide Caratti <dcaratti@redhat.com>
> ---

LGTM.
Acked-by: Andrea Claudi <aclaudi@redhat.com>
diff mbox series

Patch

diff --git a/ip/ipmptcp.c b/ip/ipmptcp.c
index bc12418bd39c..25d7d6784f89 100644
--- a/ip/ipmptcp.c
+++ b/ip/ipmptcp.c
@@ -262,7 +262,7 @@  static int mptcp_addr_dump(void)
 		return -2;
 	}
 
-	close_json_object();
+	delete_json_obj();
 	fflush(stdout);
 	return 0;
 }