From 21c6569d6f4dca71b4ddf7e6499e296efaf819c0 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 9 Dec 2022 08:32:12 -0500 Subject: [PATCH] ospf6d: Don't allocate json memory in non-json path Signed-off-by: Donald Sharp --- ospf6d/ospf6_interface.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index ed228f46ae..1c045cba07 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -1242,7 +1242,8 @@ static int ospf6_interface_show(struct vty *vty, struct interface *ifp, } } - json_auth = json_object_new_object(); + if (use_json) + json_auth = json_object_new_object(); if (oi->at_data.flags != 0) { if (use_json) { if (CHECK_FLAG(oi->at_data.flags, -- 2.39.5