From: Stefan Weil Date: Mon, 3 Sep 2012 20:40:40 +0000 (+0200) Subject: kvm: Fix warning from static code analysis X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6d1cc3210ccc4372ffa337c187da9db68314c0c4;p=qemu.git kvm: Fix warning from static code analysis Report from smatch: kvm-all.c:1373 kvm_init(135) warn: variable dereferenced before check 's' (see line 1360) 's' cannot by NULL (it was alloced using g_malloc0), so there is no need to check it here. Signed-off-by: Stefan Weil Reviewed-by: Peter Maydell Signed-off-by: Stefan Hajnoczi --- diff --git a/kvm-all.c b/kvm-all.c index 39cff55f5b..e5ed3df1ac 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -1409,13 +1409,11 @@ int kvm_init(void) return 0; err: - if (s) { - if (s->vmfd >= 0) { - close(s->vmfd); - } - if (s->fd != -1) { - close(s->fd); - } + if (s->vmfd >= 0) { + close(s->vmfd); + } + if (s->fd != -1) { + close(s->fd); } g_free(s);