From abab113bd237c4700190db32e01db352569d9b3f Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Mon, 21 Jul 2014 09:52:02 +0200 Subject: [PATCH] examples: domtop: Fix uninitialized variable use max_id could be used uninitialized in the cleanup section after the domain wasn't found. Discovered by Coverity. --- examples/domtop/domtop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/domtop/domtop.c b/examples/domtop/domtop.c index 8118793a06..7661057b12 100644 --- a/examples/domtop/domtop.c +++ b/examples/domtop/domtop.c @@ -254,7 +254,7 @@ do_top(virConnectPtr conn, { int ret = -1; virDomainPtr dom; - int max_id; + int max_id = 0; int nparams = 0, then_nparams = 0, now_nparams = 0; virTypedParameterPtr then_params = NULL, now_params = NULL; struct sigaction action_stop; -- GitLab