[PATCH iproute2 1/1] ip: initialize FILE pointer in ip-monitor
From: Roman Mashak <hidden>
Date: 2017-09-26 19:14:05
Since FILE *_fp was not explicitly initialized, all the consequent print_*() calls were failing. Signed-off-by: Roman Mashak <redacted> --- ip/ipmonitor.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/ip/ipmonitor.c b/ip/ipmonitor.c
index 3171d47..f4d502a 100644
--- a/ip/ipmonitor.c
+++ b/ip/ipmonitor.c@@ -284,6 +284,9 @@ int do_ipmonitor(int argc, char **argv) if (lnsid) { groups |= nl_mgrp(RTNLGRP_NSID); } + + new_json_obj(json, stdout); + if (file) { FILE *fp; int err;
--
1.9.1