QEMU update with VENOM (CVE-2015-3456) patch
[packages/centos6/qemu.git] / 0184-kvm-Fix-warning-from-static-code-analysis.patch
1 From 0a8b8d39763f05c7862dceec9d4f44e902a9d192 Mon Sep 17 00:00:00 2001
2 From: Stefan Weil <sw@weilnetz.de>
3 Date: Mon, 3 Sep 2012 22:40:40 +0200
4 Subject: [PATCH] kvm: Fix warning from static code analysis
5
6 Report from smatch:
7
8 kvm-all.c:1373 kvm_init(135) warn:
9  variable dereferenced before check 's' (see line 1360)
10
11 's' cannot by NULL (it was alloced using g_malloc0), so there is no need
12 to check it here.
13
14 Signed-off-by: Stefan Weil <sw@weilnetz.de>
15 Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
16 Signed-off-by: Stefan Hajnoczi <stefanha@gmail.com>
17 (cherry picked from commit 6d1cc3210ccc4372ffa337c187da9db68314c0c4)
18
19 Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
20 ---
21  kvm-all.c | 12 +++++-------
22  1 file changed, 5 insertions(+), 7 deletions(-)
23
24 diff --git a/kvm-all.c b/kvm-all.c
25 index 90c71f9..08d6051 100644
26 --- a/kvm-all.c
27 +++ b/kvm-all.c
28 @@ -1419,13 +1419,11 @@ int kvm_init(void)
29      return 0;
30  
31  err:
32 -    if (s) {
33 -        if (s->vmfd >= 0) {
34 -            close(s->vmfd);
35 -        }
36 -        if (s->fd != -1) {
37 -            close(s->fd);
38 -        }
39 +    if (s->vmfd >= 0) {
40 +        close(s->vmfd);
41 +    }
42 +    if (s->fd != -1) {
43 +        close(s->fd);
44      }
45      g_free(s);
46  
47 -- 
48 1.7.12.1
49