Set lp_path to NULL after free for consistency.
diff --git a/util.c b/util.c
index 5257f5c..b65ba12 100644
--- a/util.c
+++ b/util.c
@@ -374,6 +374,7 @@ json_t *json_rpc_call(CURL *curl, const char *url,
}
} else if (hi.lp_path) {
free(hi.lp_path);
+ hi.lp_path = NULL;
}
*rolltime = hi.has_rolltime;