]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
runstate: Initialize Error * to NULL
authorPeng Liang <liangpeng10@huawei.com>
Thu, 10 Jun 2021 13:17:29 +0000 (21:17 +0800)
committerMichael Roth <michael.roth@amd.com>
Thu, 14 Oct 2021 21:01:30 +0000 (16:01 -0500)
Based on the description of error_setg(), the local variable err in
qemu_init_subsystems() should be initialized to NULL.

Fixes: efd7ab22fb ("vl: extract qemu_init_subsystems")
Cc: qemu-stable@nongnu.org
Signed-off-by: Peng Liang <liangpeng10@huawei.com>
Message-Id: <20210610131729.3906565-1-liangpeng10@huawei.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
(cherry picked from commit 6e1da3d305499d3907f3c7f6638243e2e09b5085)
Signed-off-by: Michael Roth <michael.roth@amd.com>
softmmu/runstate.c

index ce8977c6a29c939ac5890b170031d56aceae230e..54713100c2eacc4ee616905b732d6901aa95795b 100644 (file)
@@ -746,7 +746,7 @@ static void qemu_run_exit_notifiers(void)
 
 void qemu_init_subsystems(void)
 {
-    Error *err;
+    Error *err = NULL;
 
     os_set_line_buffering();